Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
こんにちは、XPath クエリに苦労しています。クエリが何も見つからなかった場合に「0」値を返すようにします。これまでの私のコードは次のとおりです。
$query = $xpathvar->query('//DataStatistics/report'); foreach($query as $result){ echo "$result->length";
現時点では空白に戻りますが、何か提案をいただければ幸いです??
それ自体の長さを取得する必要があり$queryます(ない場合length、ループは実行されません):
$query
length
$query = $xpathvar->query('//DataStatistics/report'); echo $query->length;