替换php中的字符串值?

时间:2012-09-06 16:35:15

标签: php string preg-replace str-replace

我有这个字符串:

$string=<iframe width="425" height="350" frameborder="0" scrolling="no" 
marginheight="0" marginwidth="0" src="www.yourwebiste.com"></iframe>

我想要更换宽度从425到248,高度350到160?

我试过

str_replace('"350"', '"160"', $string);

但我没有运气

1 个答案:

答案 0 :(得分:2)

正如meustrus所提到的,首先你需要在$ string附近加上引号。

要替换值,您可以使用单个str_replace:

$string='<iframe width="425" height="350" frameborder="0" scrolling="no" marginheight="0" marginwidth="0" src="www.yourwebiste.com"></iframe>';
$newString = str_replace(array('425', '350'), array('248', '160'), $string);