2016-05-16 54 views
0

我有一個問題。我需要從這個網址獲取數據/wd/biling.php?get&id=1。現在,這個網址返回聆聽serialize。我試圖通過使用$data= file_get_contents('/wd/biling.php?get&id=1');檢索,但我有錯誤:Failed to open stream。你能幫我嗎 ?調用url來檢索列表

+0

不是沒有看不到您的代碼。 –

+0

您剛剛提供了路徑。所以它正在文件系統中查找該文件名。 –

+0

[無法打開流:沒有這樣的文件或目錄]可能的重複(http://stackoverflow.com/questions/36577020/failed-to-open-stream-no-such-file-or-directory) –

回答

1

URL只能以絕對方式傳遞(使用協議+主機+路徑)。 嘗試:

file_get_contents('http[s]://domain/path'); 

此外,如果您加載任何本地內容這樣,你可能會做錯事。我們使用包括要求運行本地php文件。 你可以用這種方式。

$id = 1; 
include('/wd/biling.php'); 

現在biling.php可以使用的$ id就是這樣。