我有一個HTML字符串來算DIV特定類的如何使用PHP的DOMDocument
html_string = '<div class="quote" post_id="48"
style="border:1px solid #000;padding:15px;margin:15px;" user_id="1"
user_name="rashidfarooq">This is not True</div>
<div class="quote" post_id="49" style="border:1px
solid #000;padding:15px;margin:15px;" user_id="1"
user_name="rashidfarooq">This is good for me</div>
<div class="genuine" post_id="49" style="border:1px
solid #000;padding:15px;margin:15px;" user_id="1"
user_name="rashidfarooq">This is good for me</div>';
我想指望其類名=「引用」 我已經試過
$dom = new DOMDocument;
$dom->loadHTML($html_string);
$divs = $dom->getElementsByTagName('div');
$length = $divs->length;
股利但$長度給出了div的總數。我如何才能只計算具有class name =「quote」的div。有沒有可以做到這一點的PHP Native功能。