亚洲乱码中文字幕综合,中国熟女仑乱hd,亚洲精品乱拍国产一区二区三区,一本大道卡一卡二卡三乱码全集资源,又粗又黄又硬又爽的免费视频

基于PHP實(shí)現(xiàn)商品成交時(shí)發(fā)送短信功能

 更新時(shí)間:2016年05月11日 09:37:11   作者:Puler  
這篇文章主要介紹了基于PHP實(shí)現(xiàn)商品成交時(shí)發(fā)送短信的功能,代碼簡(jiǎ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)站的支持!

相關(guān)文章

最新評(píng)論