如何在php中添加退格键

时间:2012-05-16 04:58:37

标签: php

我有一个字符串php:

$text = "search";
$text = " ".$text."&nbsp"; // OR $text = " ".$text." ";

当我回显$ text是结果错误时,如何在字符串上添加退格

1 个答案:

答案 0 :(得分:0)

你错过了第二行的最后一个分号 你有&nbsp它应该是 

$text = "search";
$text = " ".$text." "; // OR $text = " ".$text." ";