上使用PHP函數我寫一個PHP腳本和HostGator的服務器上運行它,它給這個錯誤:無法HostGator的服務器
Warning: file_get_contents( http://affiliates.kissmyads.com/stats/lead_report.json?api_key=AFFRd3xa8hRB3xOj7KsPnmQhlFYgNE&start_date=2014-06-24&end_date=2014-06-24) [function.file-get-contents]: failed to open stream: No such file or directory in www/barpy-money.in/app/kissmyads.php on line 10
這是無法加載函數文件得到-內容()。我直接在我的程序中使用這個函數。當我在joomla文章中運行此代碼時,它工作正常,但在服務器上它給出了錯誤。誰能告訴我爲什麼會發生這種情況?
這是我的代碼:
<?php
require_once 'include/DB_Connect.php';
// connecting to database
$db = new DB_Connect();
$db->connect();
$url = ' http://affiliates.kissmyads.com/stats/lead_report.json?api_key=my_api_key&start_date=2014-06-24&end_date=2014-06-24';
$result = file_get_contents($url); // line number 10
echo '<pre>';
print_r(json_decode($result));
echo '</pre>'; ?>
網址通常不以空格字符開頭。 – mario
措辭不佳的標題。 –
非常感謝我的問題解決! – Barpy