私はPHPでのfile_get_contentsを使用していますが、それはいくつかのエラーがスローされます。のfile_get_contents()エラー
私のコード
#try to fetch from remote
$this->remotePath = "http://some-hostname.com/blah/blah.xml
$fileIn = @file_get_contents($this->remotePath);
エラー:
Warning: file_get_contents() [function.file-get-contents]: URL file-access is disabled in the server configuration in /virtual/path/to/file/outputFile.php on line 127
Warning: file_get_contents(https://some-host-name/data/inputFile.xml) [function.file-get-contents]: failed to open stream: no suitable wrapper could be found in /virtual/path/to/file/outputFile.php on line 127
任意のアイデアを?私のコンピュータで正常に動作しましたが、Webサーバーに移植しても機能しなくなりました。
Btw、xmlをロードしたいので、allow_url_fopenを設定した後で、関数simplexml_load_fileを使用してください。 –