首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 网站开发 > PHP >

正则去除图片width和height部分。该怎么解决

2012-03-19 
正则去除图片width和height部分。有许多图片,有的有width和height,有的没有width和height。如何使用正则去除

正则去除图片width和height部分。
有许多图片,有的有width和height,有的没有width和height。

如何使用正则去除所有图片的width和height部分?我的代码无效,求助。

PHP code
<pre> <?php $s = '<img hspace="4" vspace="4" border="1" alt="Nagoya Institute folding X-Frame car lacks S-foils, hyperdrive, rolls on a big orange ball" src="http://www.blogcdn.com/www.engadget.com/media/2010/09/x-frame-2010-09-02-600.jpg" /> <img src="http://media02.hongkiat.com/speed-performance-check/pingdom.jpg" alt="Pingdom" border="0" title="18 Website Speed and Performance Checking Tools" /><img width="200px" height="100px" src="http://blog.makezine.com/upload/2010/09/vice_grip_with_more_cowbell/expand-o.jpg"  alt="expand-o.jpg" />';$img=preg_replace('/ width="\d+" height="\d+"/', '', $s);echo $img;?> </pre>


[解决办法]
PHP code
 

热点排行