0
我打算從頁面獲取內容。 我用file_get_contents()來獲取內容,但失敗了。瀏覽器沒有顯示任何內容。如何從其網址調用api與PHP的頁面獲取內容
$content = file_get_contents("http://localhost/mediawiki/api.php?action=query&titles=firstPage&format=xml&prop=info&inprop=watched");
實際上,上面的鏈接可以顯示關於xml中firsrPage頁面的信息。
如何從調用api的url獲取內容?
當您嘗試手動訪問網址,您的瀏覽器,會發生什麼? –
沒有顯示。 – asdk77
上面的鏈接可以顯示一個xml文件,其中包含有關稱爲firstPage的頁面的信息。我想獲取信息。謝謝! – asdk77