sock_post($url, $post_string); } /** * 普通接口发短信 * apikey 为云片分配的apikey * text 为短信内容 * mobile 为接受短信的手机号 */ public function send_sms($text, $mobile){ $t_mobile = array('18521093629'); if(ENVIRONMENT != 'product' && !in_array($mobile,$t_mobile)){ return false; // $mobile = '18521093629'; } //$apikey = '181e7c60a605e96d6a0166579cbb76a4'; $apikey = 'a9a0eae716ebc9da2d13b1ed161ade7a'; $url="http://yunpian.com/v1/sms/send.json"; $encoded_text = urlencode($text); $post_string="apikey=$apikey&text=$encoded_text&mobile=$mobile"; return $this->sock_post($url, $post_string); } } ?>