私は HTML を処理しており、その特定のサブセットを照会する必要がありますが、jQuery セレクターを使用してこれを簡単に行う方法しか知りません。
これが私のPHPコードです:
$words = array('word');
$baseUrl = 'http://lema.rae.es/drae/srv/search?val='; //word goes at the end
$resultIndex = 0;
foreach($words as $word) {
if (!isset($_REQUEST[$word]))
continue;
$contents = file_get_contents($baseUrl . urldecode(utf8_decode($_REQUEST[$word])));
// THIS DOESN'T WORK! HOW DO I WRITE THIS IN PHP
$dataineed = $contents.find(".ul a").attr("href");
$contents = preg_replace('/(search?[\d\w]+)/','http://lema.rae.es/drae/srv/', $contents);
echo "<div id='results' style='
//style
", (++$resultIndex) ,"'>", $dataineed, $contents,
"</div>";
}
jQueryで使用するクエリは次のとおりです。
.find(".ul a").attr("href")
PHP と DOM を使用してどのように記述できますか?