Home > php教程 > php手册 > php 转换表单textarea换行符代码

php 转换表单textarea换行符代码

WBOY
Release: 2016-06-13 09:55:01
Original
1040 people have browsed it

经过我的测试表单textarea换行符,在windows下是rn,在linux才是n(这个没实

测),另外,在win下,r,n均有换行的功能

表格 6-1. 转义字符

序列
含义

n
换行(lf 或 ascii 字符 0×0a(10))

r
回车(cr 或 ascii 字符 0×0d(13))

t
水平制表符(ht 或 ascii 字符 0×09(9))


反斜线

$
美元符号


双引号

[0-7]{1,3}
此正则表达式序列匹配一个用八进制符号表示的字符

x[0-9a-fa-f]{1,2}
此正则表达式序列匹配一个用十六进制符号表示的字符


总结:很多朋友都说在textarea换行代码n都是这样str_replace(“n”,”

/>”),殊不知其实这种不是window标准换行,我们应该改成str_replace

("nr","
")这样就ko了。

source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Recommendations
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template