shop_surest
shop_surest copied to clipboard
它基于Laravel 5.7 开发的一个小小的电商平台,可以用于新手学习参考
## Beep boop. Your images are optimized! Your image file size has been reduced by **7%** 🎉 Details | File | Before | After | Percent reduction | |:--|:--|:--|:--| |...
helpers.php 文件里第三十六行 ```php $res = filter_var($value,FILTER_CALLBACK,[ 'options' => function ($value){ if( preg_match('/^1[34578]\d{9}$/',$value) ) { return 'phone'; } } ]); return is_null($res) ? false : $res; ``` > 最后一行应为 `return $res?...
如题, ```php public static function prePareData($request) { $pids = $request->pids; $count = $request->count; if( count($pids) !== count($pids) ) { return false; } $count = array_map('intval',$count); $data = array_combine($pids,$count); $data['address_id'] =...