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

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

4

2 回答 2

1

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

于 2012-06-29T11:14:31.887 回答
1

你需要 $a 还是变量 $a 的内容

'<input type="hidden" name="dog" value="'.$a.'">${1}'
于 2012-06-29T11:23:01.193 回答