Table of Contents
回复内容:
Home Backend Development PHP Tutorial PHP文件最后空一行的原因是什么?

PHP文件最后空一行的原因是什么?

Jun 06, 2016 pm 08:47 PM
php

PHP FIG中提及:

All PHP files MUST end with a single blank line. -- 来源

有说是方便命令行下查看代码时最后一行代码和命令行提示符分隔开。

回复内容:

PHP FIG中提及:

All PHP files MUST end with a single blank line. -- 来源

有说是方便命令行下查看代码时最后一行代码和命令行提示符分隔开。

简而言之:

文件的以空行结尾是Unix的惯例

原因如下

  • 不以空行结尾的文件输出容易混淆:
konrad$ more testfile.txt
Line one
Line twokonrad$
Copy after login
  • 不以空行结尾的文件统计行数会出错:
$ echo -n "Line not ending in a new line" | wc -l
0
$ echo "Line ending with a new line" | wc -l
1
Copy after login

也有提到GCC默认必须以空行结束、为了方便readline工具读取等等说法,恕我不能一一考证

参考链接:
1.http://stackoverflow.com/questions/729692/why-should-files-end-with-a-newline
2.https://github.com/php-fig/fig-standards/pull/58#issuecomment-10306841

换行是一行结束的标志,虽然一般会显示为下一行开始处的一个光标,但逻辑上应该是在上一行的结尾的。

比如在 C 语言中我们要 include 头文件:

<code>#include "A.h"
#include "B.h"

// A.h
last line of A
// B.h
first line of B
</code>
Copy after login

如果 A.h 的末尾没有一个换行,那么会最后一行会直接和 B.h 混在一起:

<code>last line of Afirst line of B
</code>
Copy after login

所以逻辑上来讲,最后的换行就应当是文件的一部分。
C 语言,以及后来的其他语言的编译器都要求文件末尾具有一个换行。

每行末尾都使用换行符,这是发源于Unix的习惯,可以查资料了解并不过多解释。

这样做的一个好处是有助于保证数据的一致性:每一行一定表示为“内容+换行符”。——数据一致性有一个便利性在于:不必关心最后一个元素后边没有分隔符的问题。

以PHP的数组为例,PHP数组支持[1, 2, 3,]这样最后一个元素后边有逗号的语法,就是为了保证分行定义时,不必特意关心最后一个元素后边的逗号怎么处理:

[
 'string constant 1', 
 'string constant 2', 
 'string constant 3', 
]
Copy after login

Python也在list和tuple上采用同样的实践,甚至将有无逗号用来区别tuple和括号括起来的常量:

(1) # Integer 1
(1, ) # Tuple with only one element
Copy after login

相比之下,JSON的实践就差了一些:JSON强制要求删除最后一个元素后边的逗号。

主要有两个理由:

  • 某些工具(特别是比较古老的),如果文件的末尾没有\n或\r,就会忽略最后一行。
  • 最后有一个空行,便于判断这个文件传输完整(而不是只传了一半
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

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

CakePHP Project Configuration CakePHP Project Configuration Sep 10, 2024 pm 05:25 PM

In this chapter, we will understand the Environment Variables, General Configuration, Database Configuration and Email Configuration in CakePHP.

PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian PHP 8.4 Installation and Upgrade guide for Ubuntu and Debian Dec 24, 2024 pm 04:42 PM

PHP 8.4 brings several new features, security improvements, and performance improvements with healthy amounts of feature deprecations and removals. This guide explains how to install PHP 8.4 or upgrade to PHP 8.4 on Ubuntu, Debian, or their derivati

CakePHP Date and Time CakePHP Date and Time Sep 10, 2024 pm 05:27 PM

To work with date and time in cakephp4, we are going to make use of the available FrozenTime class.

CakePHP File upload CakePHP File upload Sep 10, 2024 pm 05:27 PM

To work on file upload we are going to use the form helper. Here, is an example for file upload.

CakePHP Routing CakePHP Routing Sep 10, 2024 pm 05:25 PM

In this chapter, we are going to learn the following topics related to routing ?

Discuss CakePHP Discuss CakePHP Sep 10, 2024 pm 05:28 PM

CakePHP is an open-source framework for PHP. It is intended to make developing, deploying and maintaining applications much easier. CakePHP is based on a MVC-like architecture that is both powerful and easy to grasp. Models, Views, and Controllers gu

CakePHP Working with Database CakePHP Working with Database Sep 10, 2024 pm 05:25 PM

Working with database in CakePHP is very easy. We will understand the CRUD (Create, Read, Update, Delete) operations in this chapter.

CakePHP Creating Validators CakePHP Creating Validators Sep 10, 2024 pm 05:26 PM

Validator can be created by adding the following two lines in the controller.

See all articles