domdocumentにアイテムがあるかどうかを確認する方法
コード:
$iframe = $dom->getElementsByTagName('iframe');
foreach ($iframe as $if) {
//how to check whether $if has items for
// $if->item(0) so that I can access it without errors?
}
domdocumentにアイテムがあるかどうかを確認する方法
コード:
$iframe = $dom->getElementsByTagName('iframe');
foreach ($iframe as $if) {
//how to check whether $if has items for
// $if->item(0) so that I can access it without errors?
}
ノードに子ノードがあるかどうかをテストしますhasChildNodes()
foreach ($iframe as $if) {
if ($if->hasChildNodes()) {
// first child is $if->childNodes->item(0)
}
}
あなたはのように使用して確認することができます
if($if -> hasChildNodes()) { ... }