简单的查找和替换

时间:2014-02-05 10:47:25

标签: php regex wordpress-theming

我正在尝试确保所有YouTube嵌入都有来自API的两个属性。我正试图找到并替换所有:

rel=0&

rel0&theme=light&autohide=1&

到目前为止,我已经从online tester得到了这个,显然发现了rel=0&

preg_replace("/(.*), (.*)/", "$0 --> $2 $1", $input_lines); ()

但是,我不确定如何利用上述内容将上述代码替换为rel0&theme=light&autohide=1&

任何帮助都会很棒。

2 个答案:

答案 0 :(得分:1)

您可以使用:

str_replace("rel=0&", "rel0&theme=light&autohide=1&", $input_lines);

如果你有&,你可以这样做:

str_replace(array('rel=0&', '&'), array('rel0&theme=light&autohide=1&', '&') ,$input_lines);

答案 1 :(得分:0)

你可以使用str_replace:

str_replace('rel=0&','rel0&theme=light&autohide=1&',$input_lines)