• 欢迎访问搞代码网站,推荐使用最新版火狐浏览器和Chrome浏览器访问本网站!
  • 如果您觉得本站非常有看点,那么赶紧使用Ctrl+D 收藏搞代码吧

PHP(五)Code Standard

php 搞代码 3年前 (2022-01-24) 27次浏览 已收录 0个评论

PHP(5)Code Standa

4本文¥来源gao!%daima.com搞$代*!码$网9

搞代gaodaima码

rd

PHP(5)Code Standard

?

?

1. Autoloading Standard

?

Mandatory

?

\\()*

?

?

?

Underscores in Namespaces and Class Names

?

Actually, underscore means another directory for class name.

?

?

?

example

?

\namespace\package\Class_Name => /path/to/project/lib/vendor/namespace/package/Class/Name.php

?

\namespace\package_name\Class_Name => /path/to/project/lib/vendor/namespace/package_name/Class/Name.php

?

?

?

Here is how we load the PHP class.

?

https://gist.github.com/jwage/221634

?

?

?

2. Basic Coding Standard

?

PHP code MUST use only UTF-8 without BOM.

?

?

?

3. Coding Style Guide

?

Code MUST use 4 spaces for indenting, not tabs.

?

?

?

Learn from one colleague, In Sublime, click on the line, we saw “Tab Size” at the bottom.

?

?

?

We can go to [View]>[Indentation]>Convert Indentation to Space and check [Indent Using Space]

?

?

?

There MUST be one blank line after the namespace declaration, and there MUST be one blank line after the block of use declarations.

?

?

?

Opening braces for classes MUST go on the next line, and closing braces MUST go on the next line after the body.

?

?

?

Opening braces for methods MUST go on the next line, and closing braces MUST go on the next line after the body.

?

?

?

Visibility MUST be declared on all properties and methods;

?

?

?

Control structure keywords MUST have one space after them, method and function calls MUST NOT

?

?

?

Opening braces for control structures MUST go on the same line, and closing braces MUST go on the next line after the body.

?

?

?

Opening parentheses for controller structures MUST NOT have a space after them, and closing parentheses for control structures MUST NOT have a space before.

?

?

?

The closing ?> tag MUST be omitted from files containing only PHP.

?

?

?

There MUST NOT be trailing whitespace at the end of non-blank lines.

?

?

?

Blank lines MAY be added to improve readability and to indicate related blocks of code.

?

?

?

PHP keywords and True/False/Null MUST be in lower case. true, false, null.

?

?

?

all use declarations MUST go after the namespace declaration.

?

?

?

Visibility MUST be declared on all properties.

?

?

?

The var keyword MUST NOT be used to declare a property.

?

?

?

There MUST NOT be more than one property declared per statement.

?

?

?

4. Logger Interface

?

?

?

?

?

?

?

References:

?

http://www.php-fig.org/psr/psr-1/

?

http://www.php-fig.org/psr/psr-0/

?

http://www.php-fig.org/psr/psr-2/

?

?

?

?

?

?

?

?

?

?

?

?


搞代码网(gaodaima.com)提供的所有资源部分来自互联网,如果有侵犯您的版权或其他权益,请说明详细缘由并提供版权或权益证明然后发送到邮箱[email protected],我们会在看到邮件的第一时间内为您处理,或直接联系QQ:872152909。本网站采用BY-NC-SA协议进行授权
转载请注明原文链接:PHP(五)Code Standard

喜欢 (0)
[搞代码]
分享 (0)
发表我的评论
取消评论

表情 贴图 加粗 删除线 居中 斜体 签到

Hi,您需要填写昵称和邮箱!

  • 昵称 (必填)
  • 邮箱 (必填)
  • 网址