Php space, line feed, skip usage instructions

Source: Internet
Author: User
Php space, line feed, skip usage instructions. For more information, see. First, let's talk about \ n, \ r, \ t

\ N soft carriage return:
In Windows, line breaks are displayed and returned to the beginning of the next line.
In Linux and unix, it only indicates line breaks, but does not return to the starting position of the next line.
\ R soft space:
In Linux and unix, return to the starting position of the row.
In Mac OS, line breaks are displayed and returned to the start position of the next line, which is equivalent to \ n in Windows.
\ T hop (move to the next column)

Notes:

They are valid in double quotes or delimiters, and are invalid in single quotes.
\ R \ n is generally used together to represent the carriage return key (in Linux and Unix) on the keyboard. \ n (in Windwos) can also be used only, and \ r is used to represent the carriage return in Mac OS!
\ T indicates the "TAB" key on the keyboard.

Line Feed characters in the file:

Windows: \ n
Linux, unix: \ r \ n
Mac OS:

The code is as follows:


$ Dir = "E:/PHPworkspace ";
If ($ handle = opendir ($ dir )){
Echo "directory path: $ dir/n ";
Echo "included files:/n ";
}
// This is the correct way to traverse the Directory
While (false! ==( $ File = readdir ($ handle ))){
Echo "$ file/n ";
}
?>


The code is as follows:


$ Dir = "E:/PHPworkspace ";
If ($ handle = opendir ($ dir )){
Echo "directory path: $ dir/n ";
Echo "included files:/n ";
}
// This is the correct way to traverse the Directory
While (false! ==( $ File = readdir ($ handle ))){
Echo "$ file/n ";
}
?>

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.