file_get_contents('php:// input')的替代方法 - 提出cURL,无法使其工作

时间:2013-11-01 04:45:22

标签: php curl

当web-hosts不允许file_get_contents时(直接或通过allow_url_fopen)。我想整理一份备选方案清单。有人可以提供建议吗?我发现可以使用cURL,但下面的代码不会在$ output中返回任何内容。

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL,"php://input" );
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
$output = curl_exec($ch);
curl_close($ch);
echo $output;

1 个答案:

答案 0 :(得分:-1)

File_get_contents alternative(CURL):

<?php

function file_get_contents_curl($url) {
    $ch = curl_init();

    curl_setopt($ch, CURLOPT_HEADER, 0);
    curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1); //Set curl to return the data instead of printing it to the browser.
    curl_setopt($ch, CURLOPT_URL, $url);

    $data = curl_exec($ch);
    curl_close($ch);

    return $data;
}

?>

注意:我不是在几周前在网上找到的。