file_get_contents 返回空字符串
问题描述:
运行以下代码时:
<?php
$html = file_get_contents('https://www.eltenedor.es/');
$albergina_doc = new DOMDocument();
libxml_use_internal_errors(TRUE);
if(!empty($html)){
$albergina_doc->loadHTML($html);
libxml_clear_errors();
$albergina_xpath = new DOMXPath($albergina_doc);
$customer = array();
$review = array();
$albergina_array = array();
$albergina_review = $albergina_xpath->query('//div[@class="reviewItem-customerComment"]'); //scrapping basico
$albergina_customer = $albergina_xpath->query('//div[@class="reviewItem-profileInfo"]'); //scrapping basico
foreach ($albergina_customer as $row) {
$content = explode(' ', $row->nodeValue);
$customer_name = $content[40]." ".$content[41];
array_push($customer,$customer_name);
}
foreach ($albergina_review as $row) {
array_push($review,$row->nodeValue);
}
for($i = 0; $i<count($customer); $i++){
array_push($albergina_array, array('customer' => $customer[$i] , 'review' => $review[$i]));
}
echo (json_encode($albergina_array));
}
我在本地服务器上的 $html 上得到的结果是肯定的.但是,当我将它上传到我的 FTP 并运行它时, $html 的内容是空的,并且没有抛出错误.有谁知道可能是什么问题?
the result I get on $html in my local server is positive. However, when I upload it to my FTP and run it, the content of $html is empty and no error is thrown. Does anybody know what can be the problem?
答
查看错误日志 - 如果您将 file_get_contents
用于 https url,可能会抛出错误,例如缺少包装器.
Have a look at the error log - if you use file_get_contents
for a https url, there might be errors thrown like missing wrappers.
如何使用 file_get_contents()HTTPS? 包含以下代码以检查已注册的包装器:
How to get file_get_contents() to work with HTTPS? contains the following code to check for the registered wrappers:
$w = stream_get_wrappers();
echo 'openssl: ', extension_loaded ('openssl') ? 'yes':'no', "\n";
echo 'http wrapper: ', in_array('http', $w) ? 'yes':'no', "\n";
echo 'https wrapper: ', in_array('https', $w) ? 'yes':'no', "\n";
echo 'wrappers: ', var_export($w);