Home >Backend Development >PHP Tutorial > 替换字符串的有关问题

替换字符串的有关问题

WBOY
WBOYOriginal
2016-06-13 13:38:59855browse

替换字符串的问题
不用js,想将替换字符串width="80" height="80",如何写呢?
传入字符串

HTML code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<img     style="max-width:90%" src="http://www.macaucentral.com/dev/images/stories/jreviews/649_Image00001_1304589016.jpg" alt=" 替换字符串的有关问题 " >


传出字符串
HTML code
<!--

Code highlighting produced by Actipro CodeHighlighter (freeware)
http://www.CodeHighlighter.com/

-->
<img     style="max-width:90%"  style="max-width:90%" src="http://www.macaucentral.com/dev/images/stories/jreviews/649_Image00001_1304589016.jpg" alt=" 替换字符串的有关问题 " >




------解决方案--------------------
echo str_replace('width="200"','width="80" height="80"',$str);
------解决方案--------------------
PHP code
<?php $str='<img     style="max-width:90%" src="http://www.macaucentral.com/dev/images/stories/jreviews/649_Image00001_1304589016.jpg" alt=" 替换字符串的有关问题 " >';
echo preg_replace('/width="\d+"/','width="80" height="80"',$str);
<br><font color="#e78608">------解决方案--------------------</font><br>
如果要在前台展示的时候动态替换的话那就非js莫属了。<br>要是后台那就php处理吧 <div class="clear">
                 
              
              
        
            </div>
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn