<?php
// Report all PHP errors (see changelog)
error_reporting(E_ALL);
include('inc/simple_html_dom.php');
//base url
$base = 'https://play.google.com/store/apps';
//home page HTML
$html_base = file_get_html( $base );
//get all category links
foreach($html_base->find('a') as $element) {
echo "<pre>";
print_r( $element->href );
echo "</pre>";
}
$html_base->clear();
unset($html_base);
?>
上記のコードがあり、Play ストア ページの特定の要素を取得しようとしていますが、何も返されません。サーバー上で特定のPHP機能を無効にして、それを停止することは可能ですか?
上記のコードは、他のサイトで完全に機能します。
回避策はありますか?