0
對不起,但我不知道如何清楚地詢問這個問題。如何返回url操作的結果
$user = User::find(session('user_id'));
$api_user = 'USERAPI';
$api_password = 'USERPASSWORD';
$sms_from = 'KOLOS';
$sms_to = $user->phone;
$sms_msg = 'Your verification code is '. $user->phone_validation.'.';
//$this->sendCode($api_user,$api_password,$sms_from,$sms_to,$sms_msg); // callback
//$user = User::find(session('user_id'));
$query_string = "api.aspx?apiusername=".$api_user."&apipassword=".$api_password;
$query_string .= "&senderid=".rawurlencode($sms_from)."&mobileno=".rawurlencode($sms_to);
$query_string .= "&message=".rawurlencode(stripslashes($sms_msg)) . "&languagetype=1";
$url = "http://gateway.onewaysms.co.id:10002/".$query_string;
$arr = array($url);
$fd = implode(',', $arr);
if ($fd) {
if ($fd >= 0) {
Print("MT ID : " . $fd);
$ok = "success";
} else {
print("Please refer to API on Error : " . $fd);
$ok = "fail";
}
} else {
// no contact with gateway
$ok = "fail. No contact";
}
此代碼段在我的本地主機上正常工作,但沒有在我的godaddy主機上工作。另外,如果我直接轉到網址,它會發送短信。請有人告訴我這裏的代碼有什麼問題。
從我的標題我有一個想法,但不知道如何去的URL,然後回到我的應用程序的結果。
非常感謝。
使用CURL。閱讀它。 –
使用GuzzleHttp:http://docs.guzzlephp.org/en/latest/ –