摘要:
//字符串截取 function utf8_substr($str, $start, $length) { $i = 0; //完整排除之前的UTF8字符 while($i < $start) { $ord = ord($str{$i}); if($ord < 192) { $i++; } elsei... 阅读全文
摘要:
//数组转对象 function array2object($array) { if (is_array($array)) { $obj = new StdClass(); foreach ($array as $key => $val){ $obj->$key = $val; } } else { ... 阅读全文
摘要:
function strFilter($str){ $str = str_replace('`', '', $str); $str = str_replace('·', '', $str); $str = str_replace('~', '', $str); $str = str_replace('!', '', $str); $str = str_re... 阅读全文
摘要:
Git 1、创建远程分支(git项目已在) git checkout -b cgy git add . git commit -m “add new branch” git push origin cgy:cgy //创建远程分支cgy 2、合并远程分支cgy 到master主干 git push 阅读全文
摘要:
PHP去除重复的数组数据 "green","", "red","b" => "green", "","blue", "red","c" => "witer","hello","witer"); //$result = array_unique($input); //去除重复元素 $result = a_array_unique($input); 阅读全文
摘要:
#手下下载tar.gz包#首先手工建立mysql用户和用户组 > groupadd mysql > useradd -r -g mysql mysql#然后就是安装的解压 编译安装 > tar zxvf mysql-5.6.10.tar.gz > cd mysql-5.6.10 > cmake . 阅读全文
摘要:
<?php function aa($str) { $temp = array(); for ($i = 0; $i < strlen($str); $i++) { $t = $str[$i]; switch ($t) { case '(': array_push($temp, '('); ... 阅读全文