2

.htacess

# Do not remove this line, otherwise mod_rewrite rules will stop working
RewriteBase /
allow_url_fopen On 
allow_url_include On

我尝试将此添加到我的 .htaccess 但没有使用我尝试过

   $contnt = file_get_contents('http://site/files.php');
   echo $contnt;

但我收到这个错误

    Fatal error: Call to undefined function dijkstra() in /home/a2515416/public_html/algorithm.php on line 34

当我使用 xampp 时,一切正常。

4

1 回答 1

-1

考虑到您的代码在您的本地主机上运行并且您的主机中出现未定义的函数错误,您的主机使用的是旧版本的 PHP。

file_get_contents()仅在 php 4.3 中引入。

确保您的服务器加载了最新版本的 php 或 php 版本 >=4.3。

于 2013-06-29T00:44:26.900 回答