首頁 > 後端開發 > php教程 > php获取某个class类的img数量并输出

php获取某个class类的img数量并输出

WBOY
發布: 2016-06-06 20:50:53
原創
1237 人瀏覽過

<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 解析库。

  1. http://simplehtmldom.sourceforge.net/
  2. http://stackoverflow.com/questions/29...
  3. http://stackoverflow.com/questions/35...

为什么不用jQuery呢
$('.post-content img').length();

相關標籤:
php
來源:php.cn
上一篇:linux - PHP页面有一个浏览量统计每秒有200并发,造成insert给mysql造成很大压力 下一篇:Mysql如何准确赛选(排序)出最值得推荐的信息?
本網站聲明
本文內容由網友自願投稿,版權歸原作者所有。本站不承擔相應的法律責任。如發現涉嫌抄襲或侵權的內容,請聯絡admin@php.cn
作者最新文章
最新問題
相關專題
更多>
熱門推薦
熱門教學
更多>
最新下載
更多>
網站特效
網站源碼
網站素材
前端模板