Last active
November 7, 2020 19:24
-
-
Save rasxod/692d0d64fe726be615a050e8bcdaeb00 to your computer and use it in GitHub Desktop.
SendSMS_PHPexample
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
/* | |
параметры | |
usertoken - ключ пользоваеля(обязательно) | |
ad_phone - телефон 10 цифт (обязательно) | |
ad_message - сообщение (обязвтельно от 2-х символов) | |
dev_id - id устройства(необязательео) | |
*/ | |
// POST | |
function getAnswer($url, $data) { | |
$curl = curl_init(); // Инициализируем запрос | |
curl_setopt_array($curl, array( | |
CURLOPT_URL => $url, // Полный адрес метода | |
CURLOPT_RETURNTRANSFER => true, // Возвращать ответ | |
CURLOPT_POST => true, // Метод POST | |
CURLOPT_POSTFIELDS => http_build_query($data) // Данные в запросе | |
)); | |
$response = curl_exec($curl); // Выполненяем запрос | |
// $response = json_decode($response, true); // Декодируем из JSON в массив | |
curl_close($curl); // Закрываем соединение | |
return $response; // Возвращаем ответ | |
} | |
$data = array( | |
'usertoken' => '456565454654', | |
'ad_phone' => '+79029015588', | |
'ad_message' => 'Текст сообщения', | |
); | |
$url = "http://sms.z1q.ru/add/aturn/"; | |
getAnswer($url, $data); | |
?> |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment