09 2018 档案

摘要:引入ftp类 放在vendor文件夹下,调用时页面上: 阅读全文
posted @ 2018-09-29 17:56 zrn 阅读(1362) 评论(0) 推荐(0)
摘要:ini_set("display_errors", 0); // 关闭错误报告 error_reporting(0); // 报告 runtime 错误 error_reporting(E_ERROR | E_WARNING | E_PARSE); // 报告所有错误 error_reporting(E_ALL); // 等同 error_reporting(E_ALL); ... 阅读全文
posted @ 2018-09-26 17:36 zrn 阅读(284) 评论(0) 推荐(0)
摘要:public function curl_string ($url){ $user_agent = "Mozilla/4.0"; $proxy = "http://".$this->get_ip(); $ch = curl_init(); curl_setopt ($ch,... 阅读全文
posted @ 2018-09-26 15:15 zrn 阅读(1326) 评论(0) 推荐(0)
摘要:// 每页数据数,当前页,数组,排序(0不变,1反序) function page_array($count,$page,$array,$order){ $page=(empty($page))?'1':$page; #判断当前页面是否为空 如果为空就表示为第一页面 $start=($page-1)*$count; #计算每次分页的开始位置 ... 阅读全文
posted @ 2018-09-05 13:32 zrn 阅读(1230) 评论(0) 推荐(0)