2021年11月21日
摘要:
public function addType(Request $request){ $param = $request->post(); $file = $request->file('logo'); // 移动到框架应用根目录/public/uploads/ 目录下 if ($file) { $
阅读全文
posted @ 2021-11-21 21:10
少雄3306
阅读(212)
推荐(0)
2021年11月16日
摘要:
html <div class="row cl"> <label class="form-label col-xs-4 col-sm-2"><span class="c-red">*</span>商品分类:</label> <div class="formControls col-xs-8 col-
阅读全文
posted @ 2021-11-16 09:37
少雄3306
阅读(30)
推荐(0)
2021年11月14日
摘要:
后台: public function sendCode(){ $prams = input(); $last_time = Cache::store('redis')->get('register_time_time'.$prams['tel']); if (time() - $last_time
阅读全文
posted @ 2021-11-14 18:02
少雄3306
阅读(402)
推荐(0)
2021年11月12日
摘要:
if(!function_exists('encrypt_password')){ function encrypt_password($password){ $salt = 'defggggd'; return md5($salt.md5($password)); }}if (!function_
阅读全文
posted @ 2021-11-12 14:48
少雄3306
阅读(43)
推荐(0)