CURL в PHP - GET запрос: различия между версиями
Материал из Wiki - Iphoster - the best ever hosting and support. 2005 - 2024
Admin iph (обсуждение | вклад) |
Admin iph (обсуждение | вклад) |
||
Строка 4: | Строка 4: | ||
Пример кода: | Пример кода: | ||
<syntaxhighlight lang="php" line='line'> | <syntaxhighlight lang="php" line='line'> | ||
− | + | <?php | |
− | + | $ch = curl_init('https://vk.com'); | |
− | + | curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); | |
− | + | curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); | |
− | + | curl_setopt($ch, CURLOPT_HEADER, false); | |
− | + | $html = curl_exec($ch); | |
− | + | curl_close($ch); | |
− | + | echo $html; | |
− | + | ||
</syntaxhighlight> | </syntaxhighlight> |
Версия 20:37, 29 ноября 2020
CURL в PHP - GET запрос
Пример кода:
<?php $ch = curl_init('https://vk.com'); curl_setopt($ch, CURLOPT_RETURNTRANSFER, true); curl_setopt($ch, CURLOPT_SSL_VERIFYPEER, false); curl_setopt($ch, CURLOPT_HEADER, false); $html = curl_exec($ch); curl_close($ch); echo $html;