0
我的問題是, 「allow_url_fopen選項」 上的phpinfo()see here allow_url_fopen is ON
啓用,但使用此功能,我看到它的禁用enter image description here
這是我的tt.php:allow_url_fopen選項禁用服務器上
<?php
$a = ini_get('allow_url_open');
if ($a == true)
echo 'allow_url_open is ON';
else
echo 'allow_url_open is OFF';
?>