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.
我有一个简单的 MySQL 查询,它接受一个 html 字符串并将其插入到数据库中,但是我总是丢失换行符 - 我需要做些什么来保留插入查询中的换行符吗?
使用查询重新加载字符串,它们会查看它们是否包含换行符。检查 ascii 13、10 以及两者的组合也可能是一个好主意。如果它带有换行符 (10),则 MySQL 可能期待回车/换行组合,反之亦然。