摘要:
$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... 阅读全文
摘要:
第一种方法 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 阅读全文
摘要:
size = $size; } public function push($item){ if($this->isFull()){ return ; } $this->top++; $this->stack[$this->top]=$item; } publ... 阅读全文
摘要:
Controer: Model: 阅读全文
摘要:
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 阅读全文
摘要:
strtolower()//字符串转化小写的字母 $str="abcdEfG";$s=strtolower($str); 输出:abcdefg; strtoupper();字符串转化大写的字母 $str="abcdEfG";$s=strtoupper($str); 输出:ABCDEFG ltrim/ 阅读全文
摘要:
sort() 函数用于对数组单元从低到高进行排序。 rsort() 函数用于对数组单元从高到低进行排序。 asort() 函数用于对数组单元从低到高进行排序并保持索引关系。 arsort() 函数用于对数组单元从高到低进行排序并保持索引关系。 ksort() 函数用于对数组单元按照键名从低到高进行排 阅读全文
摘要:
注册账户以及创建仓库 要想使用github第一步当然是注册github账号了。之后就可以创建仓库了(免费用户只能建公共仓库),Create a New Repository,填好名称后Create,之后会出现一些仓库的配置信息,这也是一个Git的简单教程。步骤如下: 打开https://github 阅读全文