在php中连接带点(句点)的字符串

时间:2015-03-31 05:32:15

标签: php string

用Google搜索但找不到答案。

我有

echo "<input type = 'text' value = ".$value." name = ".$input_id."/>";

$value$input_id包含一个与用于连接的点冲突的点。我怎么逃避呢?

谢谢!

2 个答案:

答案 0 :(得分:1)

如果变量包含例如。空间,他们必须在引号中。 Concat运营商没有问题。

echo "<input type='text' value='" . $value . "' name='" . $input_id . "'/>";

答案 1 :(得分:1)

使用此

echo "<input type='text' value='" . $value . "' name='" . $input_id . "'/>";