摘要: $testy) != (self::$verty[$j]>$testy) ) && ($testx $maxX) $maxX = $item['lng']; if($item['lng'] $maxY) $maxY = $item['lat']; if($item['lat'] $maxX || $pointArray['lat'] $maxY) { return fals... 阅读全文
posted @ 2017-10-26 12:22 czcColud 阅读(806) 评论(0) 推荐(0) 编辑
摘要: 第一种方法 fread() ? 1 2 3 4 5 6 7 8 <?php $file_path = "test.txt"; if(file_exists($file_path)){ $fp = fopen($file_path,"r"); $str = fread($fp,filesize($fi 阅读全文
posted @ 2017-09-19 19:09 czcColud 阅读(1417) 评论(0) 推荐(0) 编辑
摘要: size = $size; } public function push($item){ if($this->isFull()){ return ; } $this->top++; $this->stack[$this->top]=$item; } publ... 阅读全文
posted @ 2017-09-09 13:36 czcColud 阅读(203) 评论(0) 推荐(0) 编辑
摘要: controler model: 阅读全文
posted @ 2017-09-02 15:43 czcColud 阅读(375) 评论(0) 推荐(0) 编辑
摘要: Art: Artmodel: 阅读全文
posted @ 2017-09-02 09:28 czcColud 阅读(266) 评论(0) 推荐(0) 编辑
摘要: Controer: Model: 阅读全文
posted @ 2017-09-01 10:26 czcColud 阅读(1493) 评论(0) 推荐(0) 编辑
摘要: CentOS 6.5系统安装配置LAMP(Apache+PHP5+MySQL)服务器环境 准备篇: 1、配置防火墙,开启80端口、3306端口vi /etc/sysconfig/iptables-A INPUT -m state --state NEW -m tcp -p tcp --dport 8 阅读全文
posted @ 2017-08-30 17:21 czcColud 阅读(180) 评论(0) 推荐(0) 编辑
摘要: strtolower()//字符串转化小写的字母 $str="abcdEfG";$s=strtolower($str); 输出:abcdefg; strtoupper();字符串转化大写的字母 $str="abcdEfG";$s=strtoupper($str); 输出:ABCDEFG ltrim/ 阅读全文
posted @ 2017-08-24 14:40 czcColud 阅读(83) 评论(0) 推荐(0) 编辑
摘要: sort() 函数用于对数组单元从低到高进行排序。 rsort() 函数用于对数组单元从高到低进行排序。 asort() 函数用于对数组单元从低到高进行排序并保持索引关系。 arsort() 函数用于对数组单元从高到低进行排序并保持索引关系。 ksort() 函数用于对数组单元按照键名从低到高进行排 阅读全文
posted @ 2017-08-24 14:21 czcColud 阅读(152) 评论(0) 推荐(0) 编辑
摘要: 注册账户以及创建仓库 要想使用github第一步当然是注册github账号了。之后就可以创建仓库了(免费用户只能建公共仓库),Create a New Repository,填好名称后Create,之后会出现一些仓库的配置信息,这也是一个Git的简单教程。步骤如下: 打开https://github 阅读全文
posted @ 2017-08-02 17:23 czcColud 阅读(262) 评论(0) 推荐(0) 编辑