Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我正在尝试输入从基础调用的输入值。
<input class=\"title\" name=\"title\" value=".$edit['title']." />
标题是:欢迎纽约!但它只显示新。如果我写NewYorkW欢迎!它显示正确,但是当有空格时 - 不。我只是试图回显不在输入中的 $edit['title'] - 它显示正确。很奇怪的问题。请问,有什么解决办法吗?
如果字符串由双引号分隔,则必须像使用前面的属性一样对它们进行转义:
<input class=\"title\" name=\"title\" value=\"{$edit['title']}\" />