23 lines
364 B
PHP
23 lines
364 B
PHP
|
|
<?php
|
|||
|
|
/**
|
|||
|
|
* Tiffany SMS API重构-接口类
|
|||
|
|
* @author QZQ
|
|||
|
|
*/
|
|||
|
|
header("Content-Type:text/html; Charset=utf-8");
|
|||
|
|
|
|||
|
|
class UrlsController extends ControllerBase{
|
|||
|
|
|
|||
|
|
function initialize(){
|
|||
|
|
parent::initialize();
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
/**
|
|||
|
|
* 长链转短链(Long URL shortening)
|
|||
|
|
* http://127.0.0.1/tiffany/api/urls/shorturl?qaz=wsx
|
|||
|
|
*/
|
|||
|
|
function shorturlAction(){
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
|
|||
|
|
}
|
|||
|
|
?>
|