上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
摘要: class RegexConst { const REGEX_MOBLIE_86 = '/^1(3|4|5|7|8)\d{9}$/';//中国手机号 const REGEX_MOBLIE_852 = '/^(5|6|9)\d{7}$/';//香港手机号 const REGEX_MOBLIE_1 = '/^\d{10}$/';//美国手机号 const REGEX_... 阅读全文
posted @ 2017-08-27 11:34 王先生架构 阅读(304) 评论(0) 推荐(0) 编辑
摘要: 这些都是工作中常用的 前几年写过 但没有记录的习惯,后边有要用到麻烦,现在记录下 以后直接拿来用 阅读全文
posted @ 2017-08-27 11:31 王先生架构 阅读(580) 评论(0) 推荐(0) 编辑
摘要: public static function utf8_to_gbk($utfstr) { return iconv("utf-8", "gbk//IGNORE", $utfstr); } static function gbk_to_utf8($gbstr) { return mb_convert_encoding($gbstr, "utf-8", "gbk")... 阅读全文
posted @ 2017-08-27 11:29 王先生架构 阅读(344) 评论(0) 推荐(0) 编辑
摘要: static function utf8_to_unicode($c) { switch(strlen($c)) { case 1: return ord($c); case 2: $n = (ord($c[0]) & 0x3f) > 6); $... 阅读全文
posted @ 2017-08-27 11:27 王先生架构 阅读(365) 评论(0) 推荐(0) 编辑
摘要: /* 字典升序*/ function formatParaMap($paraMap) { $buff = ""; ksort($paraMap); foreach ($paraMap as $k => $v) { $buff .= $k . "=" . $v . "&"; ... 阅读全文
posted @ 2017-08-24 17:30 王先生架构 阅读(760) 评论(0) 推荐(0) 编辑
摘要: public function xmlToArray($xml) { //将XML转为array $array_data = json_decode(json_encode(simplexml_load_string($xml, 'SimpleXMLElement', LIBXML_NOCDATA)), true); return $arr... 阅读全文
posted @ 2017-08-24 15:54 王先生架构 阅读(253) 评论(0) 推荐(0) 编辑
摘要: //32位随机字符串 function randstrpay($length=32) { $rand=''; $randstr= 'ABCDEFGHIJKLMNOPQRSTUVWXYZ0123456789'; $max = strlen($randstr)-1; mt_srand((double)microtime()*1... 阅读全文
posted @ 2017-08-21 11:20 王先生架构 阅读(712) 评论(0) 推荐(0) 编辑
摘要: Fatal error: Allowed memory size of 134217728 bytes exhausted 网上很多解决方法:就简单记录下 一个csv导入功能 由于数据太多 占用内存太大 溢出 在这里第一步先要释放内存 要不 即使你后边做过释放也不管用,因为已经被占用了 后边的释放 阅读全文
posted @ 2017-08-15 15:10 王先生架构 阅读(1336) 评论(0) 推荐(0) 编辑
摘要: 用php 本身自带的fgetcsv函数 完全可以实现 没有必要在用phpexel 这些插件 阅读全文
posted @ 2017-08-10 16:53 王先生架构 阅读(559) 评论(0) 推荐(0) 编辑
摘要: UPDATE www_92game_net_cnys_ecms_caipu SET titlepic=REPLACE(titlepic,'http://file.92game.net', '') ; UPDATE www_92game_net_cnys_ecms_news SET titlepic= 阅读全文
posted @ 2017-08-09 17:47 王先生架构 阅读(641) 评论(0) 推荐(0) 编辑
上一页 1 2 3 4 5 6 7 8 9 10 ··· 12 下一页
失独者之家