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.
我正在从数据库中的文本区域保存文本并将其显示在另一个文本区域中。换行符显示为 \n 应该是正确的,但是 textarea 正在显示它们而不是进行换行符!我怎样才能解决这个问题?
您需要发送文字换行符,而不是转义序列。
谢谢大卫,
这工作......
str_replace('\n', "
", $text);