Curl - проверяем работу
Материал из Wiki - Iphoster - the best ever hosting and support. 2005 - 2024
Проверка работы curl
Создаем новый файл в корневой папку Вашего сайта - curl1.php с содержанием:
<?php $url = 'https://privatbank.ua/'; $ch = curl_init(); curl_setopt($ch, CURLOPT_URL, $url); curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); curl_setopt($ch, CURLOPT_HEADER, 0); curl_setopt($ch, CURLOPT_TIMEOUT, 10); $page = curl_exec ($ch); curl_close($ch); echo $page; ?>'
После сохранения файла открываем страницу http://ваш_сайт.ru/curl1.php