如何在preg_replace中设置变量(html语法)?

时间:2012-06-29 11:10:00

标签: php preg-replace

$con = preg_replace('#(<input type="text"[^>]+?>)#', '<input type="hidden" name="dog" value="$a">${1}', $content);

如何将值设置为变量?我得到的是不正确的($ a,语法?)

2 个答案:

答案 0 :(得分:1)

而不是$ {1},我认为它应该只是1美元。这就是我一直使用的东西,似乎有用。

答案 1 :(得分:1)

您需要$ a或变量$ a

的内容吗?
'<input type="hidden" name="dog" value="'.$a.'">${1}'