2

.htacess

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

Ivはこれを私の.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

コードが localhost で機能しており、ホストで未定義の関数エラーが発生していることを考慮すると、ホストは古いバージョンの PHP を使用しています。

file_get_contents()は、php 4.3 でのみ導入されました。

サーバーに最新バージョンの php または php バージョン >=4.3 がロードされていることを確認してください。

于 2013-06-29T00:44:26.900 に答える