当前位置: 首页>>代码示例>>PHP>>正文


PHP SMS::testSend方法代码示例

本文整理汇总了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();
开发者ID:highestgoodlikewater,项目名称:lexiang,代码行数:30,代码来源:SMS.class.php


注:本文中的SMS::testSend方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。