최근 프로젝트를 진행했는데, 상품이 판매되면 문자 메시지를 보내는 기능을 구현해 달라는 요청이 있었습니다. 편집자는 나중에 모든 사람이 배울 수 있도록 핵심 코드를 아래에 게시했습니다.
html 코드 생략....
모델 코드 생략....
핵심 코드는 다음과 같습니다.
/* * ------------------------------------------------- * 修改状态 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('已超时!');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 = "此条需求已成交,下次再来哟!"; smsApp($mobile,$content); //发短信 return $result; } }
위 코드는 에디터가 올려주신 핵심 코드입니다. 코드가 상당히 간단해서, 참고 과정에서 문제가 발생하면, 댓글을 너무 많이 작성하지 않았습니다. 천만에요. 메시지를 남겨주시면 편집자가 제때에 답변해 드릴 것입니다. 이 웹사이트를 지원해 주셔서 대단히 감사합니다!
이상에서는 PHP를 기반으로 상품 판매 시 문자 메시지 전송 기능과 PHP 콘텐츠 전송 기능을 소개했습니다. PHP 튜토리얼에 관심이 있는 친구들에게 도움이 되었으면 좋겠습니다.