example.php

来自「这个类可以用来发送短消息的mycantos.com服务。 它可以进入My」· PHP 代码 · 共 13 行

PHP
13
字号
<?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 + =
减小字号Ctrl + -
显示快捷键?