摘要:
接口需求: 输出json 单一入口 安全 http://segmentfault.com/q/1010000000143852基于token验证?session? 缓存 session cookie 数据库 配置 日志 公共文件夹 我的框架: index.php:定义时区,定义运行环境,定义框架目录路径,引入框架文件(除... 阅读全文
摘要:
官方demo // 创建一对cURL资源
$ch1 = curl_init();
$ch2 = curl_init(); // 设置URL和相应的选项
curl_setopt($ch1, CURLOPT_URL, "http://www.example.com/");
curl_setopt($ch1, CURLOPT_HEADER, 0);
curl_setopt($ch2, C... 阅读全文
摘要:
/** * 求某月/某年的工作日 * @param array $search 搜索类型 * @param array $other_day 寒暑假和过节 * @return array 工作日 */
function get_workday($search = array(), $other_day = array())
{ //获取搜索的所有天... 阅读全文