2017-07-22 67 views
1

我有一個php腳本,它使用$ _REQUEST($query = $_REQUEST['query'];)從一個表單獲取一個變量,並從https://en.wikipedia.org/wiki/$query(並用信譽維基百科獲得結果)獲取內容。

問題是file_get_contents();爲維基百科頁面只有當我設置$query = "custom string, not requested one";,但當我嘗試一個$_REQUEST ED字符串,它返回一個空字符串。

任何人都可以找到解決方案嗎?

謝謝,多米

回答

0

確保你在你的$query變量中獲得價值,然後讓你請求的URL爲

$query = $_REQUEST['query']; 
$url="https://en.wikipedia.org/wiki/".$query; 

然後使用file_get_contents()函數作爲

$result=file_get_contents($url); 
相關問題