摘要:
<?php /** * User: Eden * Date: 2019/3/21 * 共有内容 */ namespace Common\Util; use Vendor\Func\Http; class WxUtil extends CommonUtil { public function __co 阅读全文
摘要:
<?php /** * User: Eden */ namespace Common\Util; use Vendor\Func\Http; class ExpressUtil extends CommonUtil { public function __construct() { parent:: 阅读全文
摘要:
// 过滤重复数组 function array_uniq(input_arr) { // 判断规格是否重复 var h={}; //定义一个hash表 var arr=[]; //定义一个临时数组 for(var i = 0; i < input_arr.length; i++){ //循环遍历当 阅读全文