1

私はこの問題が発生するSimplehtmldomを使用しています:

Warning: file_get_contents(http://forums.xxxxx.co.il/viewtopic.php?f=1015&t=14635609) [function.file-get-contents]: failed to open stream: HTTP request failed! HTTP/1.1 404 Not Found in C:\wamp\www\forums_walla\simple_html_dom.php on line 76

&問題はどこにあるべきかということだと思います&か?

誰かが何をすべきか知っていますか?または何を修正する必要がありますか?

ところで、コードは次のようになります。

$href1 = "http://forums.xxxx.co.il/".$topic_page_href; // where $topic_page_href contains the link to next page as --> viewtopic.php?f=1015&t=14635609 which was scrapped from a page)
$topic_page = file_get_html($href1);

そして私がそうするなら

$href1 = "http://forums.xxxx.co.il/viewtopic.php?f=1015&t=14635609
$topic_page = file_get_html($href1);

すべてが大丈夫です。

私は昨日からそれを解決しようとしていますが、何もありません。誰かがそれに対する解決策を持っていることを願っています。事前にt​​hx:)

必要なことは何でも聞いてください。

4

1 に答える 1

1

文字列をにフィードします

htmlspecialchars_decode()

ここにドキュメント

于 2013-02-08T07:45:53.597 に答える