本文整理汇总了PHP中SMS::testSend方法的典型用法代码示例。如果您正苦于以下问题:PHP SMS::testSend方法的具体用法?PHP SMS::testSend怎么用?PHP SMS::testSend使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类SMS
的用法示例。
在下文中一共展示了SMS::testSend方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: send
$hash .= $chars[mt_rand(0, $max)];
}
}
return $hash;
}
public function send()
{
$target = "http://106.ihuyi.cn/webservice/sms.php?method=Submit";
$mobile = $this->mobile;
$mobile_code = $this->random(4, 1);
if (empty($mobile)) {
exit('手机号码不能为空');
}
$account = $this->account;
$password = $this->password;
$content = $this->content;
$post_data = "account={$account}&password={$password}&mobile={$mobile}&content=" . rawurlencode($content);
$gets = $this->xml_to_array($this->Post($post_data, $target));
echo $gets['SubmitResult']['msg'] . "!";
}
public function testSend()
{
$mobile_code = $this->random(4, 1);
$content = "您的验证码是:" . $mobile_code . "。请不要把验证码泄露给其他人。";
$sender = new SMS($this->account, $this->password, $this->mobile, $content);
$sender->send();
}
}
$x = new SMS("cf_lidaqi", "15155672782", "18580468684", "asd");
$x->testSend();