文字列置換の問題
jsを使わずに、width="80" height="80"という文字列を置換したいのですが、どうやって書くのですか?
受信文字列
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <img width="200" src="http://www.macaucentral.com/dev/images/stories/jreviews/649_Image00001_1304589016.jpg">
<!-- Code highlighting produced by Actipro CodeHighlighter (freeware) http://www.CodeHighlighter.com/ --> <img width="80" height="80" src="http://www.macaucentral.com/dev/images/stories/jreviews/649_Image00001_1304589016.jpg">
<?php $str='<img width="200" src="http://www.macaucentral.com/dev/images/stories/jreviews/649_Image00001_1304589016.jpg">'; echo preg_replace('/width="d+"/','width="80" height="80"',$str); <br><font color="#e78608">------解決策------------------</font><br> フロント表示時に動的に置き換えたい場合はjsにする必要があります。 <br>バックグラウンドにある場合は、PHP を使用して処理します <div class="clear"></div>