curl dans serveur ou script ne marche pas

时间:2016-09-16 01:17:37

标签: php file-get-contents

curl activer dans mon serveur et safe mode(on)

<?php
$ch = curl_init("http://www.example.com/");
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, true);
$content = curl_exec($ch);
curl_close($ch);

$fp = fopen("resource.txt", "r+");
fwrite($fp, $content);
fclose($fp);

?>

Lorsque je veut进口商Html de se网站dans fichier文本 fichier toujours vide:/ file_get_content est bloque dans serveur

0 个答案:

没有答案