我正在嘗試使用PHP文件發送短信。所有電子郵件屬性都包含在URL中。這裏的問題是,只有郵件的第一個字是隻發送!消息只發送第一個字
我不知道爲什麼!
<?php
$url = "http://sms-gates.com/smspro/sendsms.php?user=myuser&password=mypass&numbers=".$_GET['mobile']."&sender=JobSeeker&message=".$_GET['msg']."&lang=en";
$link = fopen($url,"r");
while($res = fread($link,1024))
{
echo $res;
}
fclose($link);
?>
使用'file_get_contents'而不是所有'$ link'相關的東西。 – Jon
你用來測試什麼'msg'的值? – Dev