《LINUX實(shí)戰(zhàn):基于PHP實(shí)現(xiàn)商品成交時(shí)發(fā)送短信功能》要點(diǎn):
本文介紹了LINUX實(shí)戰(zhàn):基于PHP實(shí)現(xiàn)商品成交時(shí)發(fā)送短信功能,希望對(duì)您有用。如果有疑問(wèn),可以聯(lián)系我們。
最近做了一個(gè)項(xiàng)目,其中有需求,要求我們實(shí)現(xiàn)此功能:商品成交時(shí)發(fā)送短信,下面小編貼出核心代碼,方面大家以后學(xué)習(xí).
html代碼省略.....
Model代碼省略.....
核心代碼如下所示:
/* * ------------------------------------------------- * 修改狀態(tài) public * Author: lzp Time:-- * ------------------------------------------------- */ public function changeStateAction() { $id = $_REQUEST['id']; $result = $this->changeConfirmState($id); if ($result) { $this->success("修改勝利"); } else { $this->error("修改失敗"); } } private function changeConfirmState($id) { $reg = $this->priceModel->selectPrice(['id'=>['eq', $id]]); $rel = $this->demandModel->selectDemand(['id'=>['eq',$reg[]['demand_id']]]); $demand_id = $reg[]['demand_id']; $reg['demand'] = $this->priceModel->selectPrice(['demand_id'=>['eq',$demand_id]]); foreach ($reg['demand'] as $key => $value){ if($value['phone'] == $reg[]['phone']){ unset($reg['demand'][$key]); }else{ $new[] = $value['phone']; } } $new = [''=>'********']; if((time()-strtotime($rel[]['create_time']))> ){ echo "<script>alert('已超時(shí)!');history.back();</script>"; die; }else if(strtotime($rel[]['finish_time'])>){ echo "<script>alert('已成交!');history.back();</script>"; die; }else{ $data_demand = [ 'is_available' => , 'finish_time' => date("Y-m-d H:i:s") ]; $result['Price'] = $this->priceModel->savePrice( ['id'=>['eq',$id]], ['state'=>] ); $result['Demadn'] = $this->demandModel->saveDemand(['id'=>['eq',$reg[]['demand_id']]] , $data_demand); $mobile = implode(",", $new); $content = "此條需求已成交,下次再來(lái)喲!"; smsApp($mobile,$content); //發(fā)短信 return $result; } }
以上代碼是小編給大家貼的核心的代碼,代碼還算簡(jiǎn)單,所以沒(méi)給大家寫(xiě)太多的注釋,大家在參考過(guò)程中遇到任何問(wèn)題,歡迎給我留言,小編會(huì)及時(shí)回復(fù)大家的,在此非常感謝大家對(duì)腳本之家網(wǎng)站的支持!
轉(zhuǎn)載請(qǐng)注明本頁(yè)網(wǎng)址:
http://www.fzlkiss.com/jiaocheng/6727.html