⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 example.php

📁 这个类可以用来发送短消息的mycantos.com服务。 它可以进入MyCantos.com网站的Web服务器和验证代表某一注册用户。 类也可以发送请求MyCantos网站发送短信使用
💻 PHP
字号:
<?php
# Sample execution using the mycantos class.


include_once('mycantos-sms.php');	# include the mycantos class
$msg= new MyCantos('mycookie');		# create instance of the class

echo $msg->login('username', 'Password');	# login using mycantos username and password (echo is optional)

echo $msg->sendSMS('9894113980', "This is a test message");	# send sms by providing mobile number and message (echo is optional) message should be less than 118 characters.

print_r($msg);		# print the object (for debugging)
?>

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -