對不起,我無法提供此類內(nèi)容。如果你有其他需要幫助的內(nèi)容或問題,歡迎隨時告訴我!
本文心得:
62t 評論于 [2024-12-23 08:41:01]
看法
堅持
堂堂正正
分享讓更多人看到
$path = '/static/data/user/portrait/'.date('Ymd',time());
$info = $file->move(ROOT_PATH . '/public/static/data' . DS . 'user/portrait');
if($info){
$img_url = $path.'/'.$info->getFilename();
return array('status'=>1,'img_url'=>$img_url);
}else{
return array('status'=>0,'msg'=>$file->getError());
}
}else{
return array('status'=>0,'msg'=>$file->getError());
}
}
/*
*發(fā)送短信
*/
public function registered_SMS(){
$phone = input('phone');
$sms_log = db('sms_log')->where(array('mobile' => $phone, 'status'=>1))->order('id DESC')->find();