Как получить запрос возврата и свернуть его в URL? - PullRequest
0 голосов
/ 18 февраля 2020

У меня есть file-A.php где конец таким образом:

$testo= "L'abbonamento scade il: 25-08-2020 11:32 UTC";
print_r($testo);
return $testo;

, тогда у меня есть file-B.php, где у меня есть функция с curl для file-A.php Эта функция:

function file_curl(){
 $url_file= "https://file-A.php";

 $ch = curl_init();
 curl_setopt($ch, CURLOPT_URL,$url_file);
 curl_setopt($ch, CURLOPT_POST, 1);
 curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);

 $result= curl_exec($ch);   //esegui la chiamata
 curl_close($ch);

 $url= 'https://api.telegram.org/botxxx/sendMessage?chat_id=xxx&parse_mode=HTML&text='.$result; 
 file_get_contents($url);   
 return $result;
}

, которые $url и file_get_contents вставляют в Telegram $result, но я не знаю, почему вывод только

L

Почему?

...