摘要:
reset 将数组的内部指针指向第一个单元 返回值:返回数组第一个单元的值,如果数组为空则返回false end 将数组的内部指针指向最后一个单元 返回值:返回数组最后一个单元的值,如果数组为空则返回false 阅读全文
摘要:
function show($code, $message, $data = [], $httpCode = 200) { $result = [ 'code' => $code, 'msg' => $message, 'data' => $data, ]; return json($result, $httpCode); } 阅读全文
摘要:
function getOrderSn(){ $yCode = array('A', 'B', 'C', 'D', 'E', 'F', 'G', 'H', 'I', 'J'); $orderSn = $yCode[intval(date('Y')) - 2011] . strtoupper(dechex(date('m'))) . date('d') . substr(time(... 阅读全文
摘要:
function xml_to_arr($xml){//xml字符串转数组 $objectxml = simplexml_load_string($xml,'SimpleXMLElement', LIBXML_NOCDATA);//将文件转换成 对象 $xmljson= json_encode($objectxml );//将对象转换个JSON $xmlar... 阅读全文
摘要:
function is_wechat() { $ug= isset($_SERVER['HTTP_USER_AGENT'])?$_SERVER['HTTP_USER_AGENT']:''; if( stripos($ug,'micromessenger') !== false ){ return true; } return false; } ... 阅读全文
摘要:
function remove_emoji($string) { $regex_emoticons = '/[\x{1F600}-\x{1F64F}]/u'; $clear_string = preg_replace($regex_emoticons, '', $string); // Match Miscellaneous Symbols and Pictographs $regex_symbo 阅读全文
摘要:
Bootstrap 实例 登陆页面 请输入用户名 ... 阅读全文
摘要:
一,基础规范 表存储引擎必须使用InnoDB 表字符集默认使用utf8,必要时使用utf8mb4 解读: (1)通用,无乱码风险,汉字3个字节,英文1个字节 (2)utf8mb4是uft8的超集,有存储4字节例如表情符号时,使用它 禁止使用存储过程,视图,触发器,Event 解读: (1)对数据库性 阅读全文
摘要:
2019年05月30日2019-05-302019^_^05^_^302019/05/30 23:32:34201919-5-3023:32:34,pm23:32:34,PM11:32:3442019年05月30日星期四不是闰年本周是全年中的第22周当天是全年中的第149天本月有31天 strtot 阅读全文
摘要:
set_include_path 设置include_path配置选项 ini_set 为一个配置选项设置值 set_include_path(get_include_path.PATH_SEPARATOR."testa"); ini_set(get_include_path.PATH_SEPARA 阅读全文