我有
echo "<input type = 'text' value = ".$value." name = ".$input_id."/>";
$value
或$input_id
包含一个与用于连接的点冲突的点。我怎么逃避呢?
谢谢!
答案 0 :(得分:1)
如果变量包含例如。空间,他们必须在引号中。 Concat运营商没有问题。
echo "<input type='text' value='" . $value . "' name='" . $input_id . "'/>";
答案 1 :(得分:1)
使用此
echo "<input type='text' value='" . $value . "' name='" . $input_id . "'/>";