Home > Backend Development > PHP Tutorial > php 空格,换行,跳格使用说明_php技巧

php 空格,换行,跳格使用说明_php技巧

WBOY
Release: 2016-05-17 09:29:02
Original
1004 people have browsed it

首先说说\n,\r,\t

\n 软回车:
在Windows 中表示换行且回到下一行的最开始位置
在Linux、unix 中只表示换行,但不会回到下一行的开始位置。
\r 软空格:
在Linux、unix 中表示返回到当行的最开始位置。
在Mac OS 中表示换行且返回到下一行的最开始位置,相当于Windows 里的 \n 的效果。
\t 跳格(移至下一列)

几点说明:

它们在双引号或定界符表示的字符串中有效,在单引号表示的字符串中无效。
\r\n 一般一起用,用来表示键盘上的回车键(Linux,Unix中),也可只用 \n(Windwos中),在Mac OS中用\r表示回车!
\t表示键盘上的“TAB”键。

文件中的换行符号:

windows : \n
linux,unix: \r\n
Mac OS :

复制代码 代码如下:

$dir = "E:/PHPworkspace";
if($handle = opendir($dir)){
    echo "目录路径是: $dir /n";
    echo "包含的文件: /n";
}
//这是正确的遍历目录的方法
while (false !== ($file=readdir($handle))) {
    echo "$file/n";
}
?>

复制代码 代码如下:

$dir = "E:/PHPworkspace";
if($handle = opendir($dir)){
echo "目录路径是: $dir /n";
echo "包含的文件: /n";
}
//这是正确的遍历目录的方法
while (false !== ($file=readdir($handle))) {
echo "$file/n";
}
?>
Related labels:
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 Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template