이 글에서는 주로 PHP Hooks와 간단한 배포 방법을 소개하며, PHP Hooks의 정의와 사용법을 예시로 분석하고, 여러 채널 간 자유로운 전환 구현 기술도 함께 설명합니다.
이 글은 다음과 같습니다. 기사에서는 간단한 배포 방법을 사용한 예제와 함께 PHP 후크를 설명합니다. 참고를 위해 모든 사람과 공유합니다. 세부 사항은 다음과 같습니다.
//简单的钩子实现例子 class tool{ public static function main($class, $fun, $data = ''){ //前置公共操作 $con = new $class; $con->$fun($data); //后置公共操作 } } class a{ function b($data){ echo '我是方法b'; } } class c{ function d($data){ echo '我是方法d'; } } //钩子调用 tool::main('a','b','222');
SMS 채널을 캡슐화할 때 후크를 사용하여 구현할 계획이었습니다.
자동으로 SMS(다중 채널) 이메일을 보내고 푸시할 수 있습니다. 그리고 다른 메시지. . .
나중에 비즈니스 요구 사항이 생각만큼 복잡하지 않다는 사실을 발견하고 개발이 보류되었습니다. . . .
T_T 그래서 우리는
class Ar_Sms{ const LANCHUANG = 1;//通道1 const ALIDAYU = 2; //通道2 private $type; private $chuanglan_config = array(//通道1配置项 'api_send_url'=>'xxxx', 'api_balance_query_url'=> 'xxxxx', 'api_account'=> 'xxxx', 'api_password'=> 'xxxxx', ); private $alidayu_config = array(//通道2配置项 'api_key'=> 'xxxx', 'api_id'=> 'xxxxx', 'api_send_url'=> 'xxxxx', ); public function __construct($type=1){ switch($type){ case self::LANCHUANG: $this->type = $type;break; case self::ALIDAYU: $this->type = $type;break; default: $this->type = false; } } //对外抛出的发送方法 public function sendSms($mobile, $msg){ switch($this->type){ case self::LANCHUANG: return $this->_sendCL($mobile, $msg); case self::ALIDAYU: return $this->_sendAL($mobile, $msg); default: return false; } } //通道1发送方法 private function _sendCL($mobile, $msg, $needstatus = 'false', $extno = ''){ $postArr = array ( 'account' => $this->chuanglan_config['api_account'], 'pswd' => $this->chuanglan_config['api_password'], 'msg' => $msg, 'mobile' => $mobile, 'needstatus' => $needstatus, 'extno' => $extno ); $result = $this->_curlPost( $this->chuanglan_config['api_send_url'] , $postArr); $result = $this->_execResult($result); return $result[1] == 0 ? true : $result[1]; } //通道2发送方法 private function _sendAL($mobile, $msg){ $postArr = array ( 'id' => $this->alidayu_config['api_id'], 'key' => $this->alidayu_config['api_key'], 'msg' => $msg, 'mobile' => $mobile, ); $result = $this->_curlPost( $this->alidayu_config['api_send_url'] , $postArr); $result = $this->_execResult($result); return $result[1] == 0 ? true : $result[1]; } //-------------一些公共方法 /** * 处理返回值\r\n 分割 * */ private function _execResult($result){ $result=preg_split("/[,\r\n]/",$result); return $result; } /** * 处理返回值json * */ private function _jsonResult($result){ $result=json_decode($result, true); return $result; } /** * 通过CURL发送HTTP请求 * @param string $url //请求URL * @param array $postFields //请求参数 * @return mixed */ private function _curlPost($url,$postFields){ $postFields = http_build_query($postFields); $ch = curl_init (); curl_setopt ( $ch, CURLOPT_POST, 1 ); curl_setopt ( $ch, CURLOPT_HEADER, 0 ); curl_setopt ( $ch, CURLOPT_RETURNTRANSFER, 1 ); curl_setopt ( $ch, CURLOPT_URL, $url ); curl_setopt ( $ch, CURLOPT_POSTFIELDS, $postFields ); $result = curl_exec ( $ch ); curl_close ( $ch ); return $result; } } $ob = new Ar_Sms(Ar_Sms::ALIDAYU);//通道1发送 $res = $ob->sendSms('xxxxx','xxxxxx'); var_dump($res); $ob = new Ar_Sms(Ar_Sms::LANCHUANG);//通道2发送 $res = $ob->sendSms('xxxxx','xxxxxx'); var_dump($res);
간단한 배포를 통해 다중 채널의 자유로운 전환을 달성하기 위해 간단한 배포 방식을 채택했으며,
단순한 전송이므로 더 이상의 추상화는 없습니다~ 囧orz
후크의 구현 방법은 다소 야심적이므로 구체적인 구현을 여전히 고려해야 합니다. . 시간이 나면 공부하겠습니다. 여기에 간단한 데모가 있습니다. "다중 채널, 다중 방법, 다중 채널 지원, 확장 용이
위 내용은 PHP Hooks 및 간단한 배포 방법 분석 예시의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!