<div class="post-content"> <img src alt="php获取某个class类的img数量并输出" ><p>php怎么统计 post-content 内的img数量,并且输出数量,如上面代码,img数量是3</p> <h2>回复内容:</h2> <pre class="brush:php;toolbar:false"><div class="post-content"> <img src alt="php获取某个class类的img数量并输出" ><p>php怎么统计 post-content 内的img数量,并且输出数量,如上面代码,img数量是3</p> <p class="answer fmt" data-id="1020000000166314"> </p> <p>用<code>preg_match_all</code>正则匹配行么?</p> <pre class="brush:php;toolbar:false">$text = '<div class="post-content"> <img src="" alt="php获取某个class类的img数量并输出" ><img src="" alt="php获取某个class类的img数量并输出" > </div>'; $preg = "/(\<img . alt="php获取某个class类的img数量并输出" >)/s"; echo preg_match_all($preg, $text, $match);</img.>
用正则来解析 html 是不推荐的做法,见 http://stackoverflow.com/questions/17... ,最好使用一些 PHP 的 dom 解析库。
为什么不用jQuery呢
$('.post-content img').length();