21.
@郑锋 你没成功?你这样去试试!用老虎的!
function re($str){ $str=preg_replace("/\[i=(\w+)\]/iU","<input name='\\1' />",$str); $str=preg_replace("/[i=(\w+)\s+v=(.*)]/iU","<input name='\\1' value='\\2' />",$str); return $str; } $a="[i=a][i=a v=你好]"; echo re($a);
25.
@arox 唉,可能吧,你的输出html的<input name="a"/><input name="a" value="b"/>了?