1 Star 0 Fork 0

zhuwansan / phpAPI

加入 Gitee
与超过 1200万 开发者一起发现、参与优秀开源项目,私有仓库也完全免费 :)
免费加入
克隆/下载
site.php 596 Bytes
一键复制 编辑 原始数据 按行查看 历史
zhuwansan 提交于 2017-02-25 23:33 . v1.0.0
<?php
/**
* Created by PhpStorm.
* User: zhuwansan
* Date: 16/8/7
* Time: 下午6:43
* RESTful 演示实例
* RESTful 服务类
*/
class Site{
private $sites = array(
1 => 'TaoBao',
2 => 'Google',
3 => 'Runoob',
4 => 'Baidu',
5 => 'Weibo',
6 => 'Sina'
);
public function getAllSite(){
return $this->sites;
}
public function getSite($id){
$site = array($id => ($this->sites[$id]) ? $this->sites[$id] :$this->sites[1]);
return $site;
}
}
//?l_id=2&l_title=title_2&l_desc=desc_2
//?view=labels
PHP
1
https://gitee.com/zhuwansan/phpAPI.git
git@gitee.com:zhuwansan/phpAPI.git
zhuwansan
phpAPI
phpAPI
master

搜索帮助