file_get_contents return 奇怪的符号而不是网站内容

file_get_contents return strange symbols instead website content

file_get_contents return 奇怪的符号而不是网站内容

代码echo file_get_contents('https://olbi.su');

输出:

��}y�Ǒ��$��lcwf쮾��]�X[�--`��������8�U����)%�2�my����:?<�"Ekx ���_a?ɋ_d�G���(-�ə��#22"22223j�ܳ/>�ҿ��s�/���[g7��x$F�9�,�SŞ�Dϰ7K#�. �S]U�,�o6.��]�uu��V+�...

$ch = curl_init();
curl_setopt ($ch, CURLOPT_URL, 'https://olbi.su');
curl_setopt ($ch, CURLOPT_RETURNTRANSFER, 1);
curl_setopt ($ch, CURLOPT_ENCODING , 'gzip');
$content = curl_exec ($ch);

print_r($content);

这会像您期望的那样显示整个页面。使用 curl 库,以便您可以应用编码。