PHP Simple HTML DOM ParserがPHP7.2で動作しない時の対処法
環境
- PHP 7.2.0
- PHP Simple HTML DOM Parser 1.5.2
現象
以下の結果はfalseになります。
test.php
<?php
require(__DIR__. "/vendor/autoload.php");
$uri = "https://qiita.com/tnm18";
var_dump($html = @Sunra\PhpSimple\HtmlDomParser::file_get_html($uri));
対処法
str_get_html()は問題なく動作するため、最も簡単な対処法は以下のようになります。
test2.php
<?php
require(__DIR__. "/vendor/autoload.php");
$uri = "https://qiita.com/tnm18";
$html_str = @file_get_contents($uri);
var_dump($html = @Sunra\PhpSimple\HtmlDomParser::str_get_html($html_str));
PHP Simple HTML DOM Parserは非常に簡単にDOM操作を行える優れたライブラリですが、ページのサイズが600KBを超えた場合にただfalseを返すだけだったりとエラー処理も非常にシンプルです。
Author And Source
この問題について(PHP Simple HTML DOM ParserがPHP7.2で動作しない時の対処法), 我々は、より多くの情報をここで見つけました https://qiita.com/tnm18/items/90f19d638c223711f893著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .