Note: This is the coding specification seen in the PHPCMS development documentation. Although it is called the PHPCMS development specification, I think all PHP programming should be like this. Having written so much PHP, I feel that a lot of coding is lacking in comparison with this standard. I must correct it in the future.
Phpcms coding specification
1. Introduction…. 2
2. Scope of application…. 2
3. The importance and benefits of standardization…. 3
4. PHP coding specification And principles…. 3
4.1. Code markup… 3
4.2. Comments… 3
4.3. Writing rules… 4
4.3.1. Indentation… 4
4.3.2. Large Brackets {}, if and switch. 4
4.3.3. Operators, parentheses, spaces, keywords and functions... 5
4.3.4. Function definition... 6
4.3.5. Quotes... 6
4.3.6. Multi-language issues... 7
4.4. Naming principles... 8
4.4.1. Variable, object, function names... 8
4.4.2. Constants... 8
4.5. Initialization and logic checking of variables... 8
4.6. Security... 9
4.7. Compatibility... 9
4.8. Code reuse... 10
4.9. Other details... 10
4.9.1. Contains calls... 10
4.9.2. Error reporting levels... 11
5. Database design... 11
5.1. Fields... 11
5.1.1. Table and field naming... 11
5.1.2. Field structure... 11
5.2. SQL statement... 12
5.3. Performance and efficiency... 13
5.3.1. Fixed-length and variable-length tables... 13
5.3 .2. Operation and retrieval... 13
5.3.3. Structure optimization and index optimization... 14
5.3.4. Query optimization... 14
5.3.5. Compatibility issues... 16
6. Template design… 16
6.1. Code markup… 16
6.2. Writing rules… 16
6.2.1. HTML. 16
6.2.2. Variables… 16
6.2.3. Language elements... 17
6.2.4. Indentation... 17
7. Files and directories... 17
7.1. File naming... 17
7.2. Directory naming... 18
7.3. Empty Table of Contents Index… 18
1. Introduction
This specification consists of programming principles, which integrates and refines the mature experience accumulated by developers over a long period of time, and is intended to help form a good and consistent programming style. In order to achieve twice the result with half the effort, this document will be updated from time to time if necessary.
Copyright: Shaanxi Jiushi Lulu Network Technology Co., Ltd., all rights reserved
Last updated: November 20, 2006
2. Scope of application
If no special instructions are given, the following The rule requirements are fully applicable to the phpcms project, and can also be applied to most other PHP projects in the company.
3. The importance and benefits of standardization
When a software project tries to comply with public and consistent standards, it can make it easier for developers participating in the project to understand the code in the project and clarify the status of the program. It allows new participants to quickly adapt to the environment and prevents some participants from creating their own style and developing lifelong habits out of the need to save time, causing others to waste too much time and energy when reading. And in a consistent environment, the chance of coding errors can also be reduced. The disadvantage is that everyone has different standards, so it takes a while to adapt to and change your coding style, which temporarily reduces work efficiency. Considering the long-term healthy development of the project and higher team work efficiency in the later period, it is worthwhile to consider the temporary reduction in work efficiency, and it is also a process that must be gone through. Standards are not the key to project success, but they can help us be more efficient in team collaboration and complete set tasks more smoothly.
1. Programmers can understand any code and understand the status of the program
2. Newcomers can quickly adapt to the environment
3. Prevent people new to PHP from creating their own code out of the need to save time. Establish a style and develop lifelong habits
4. Prevent people new to PHP from making the same mistakes over and over again
5. In a consistent environment, people can reduce the chance of making mistakes
6. Programmers We have a common enemy
4. PHP coding standards and principles
4.1. Code tags
PHP programs can use or to define PHP code, when embedding pure variables in HTML pages , you can use this form.
In recent years, the PHP development team has been advocating code standardization and standardization. In future versions of PHP, it may start to deprecate or even cancel this shorthand form. Therefore, in order to enhance program compatibility, we will unify it before releasing it.
4.2. Comments
Comments are to add short introductory content to codes whose functions are easy to forget. Please use C-style comments "/* */" and standard C++ comments "//".
It is inevitable to leave some temporary code and debugging code during program development. Such code must be commented to avoid being forgotten in the future. All temporary, debugging, and experimental code must add a unified comment mark "//debug" followed by complete comment information. This makes it easier to batch check whether there are any doubtful problems in the program before the program is released and final debugging. code. For example:
$num = 1;
$flag = TRUE; //debug It is not sure whether $flag needs to be assigned a value here
if(empty($flag)) {
//Statements
}
4.3. Writing Rules
4.3.1. Indentation
The unit of each indentation is one TAB (8 blank characters wide), everyone needs to participate The developers of the project make mandatory settings in the editor (UltraEdit, EditPlus, Zend Studio, etc.) to prevent formatting irregularities caused by forgetting when writing code.
This indentation specification applies to functions, classes, logical structures, loops, etc. in PHP and JavaScript.
4.3.2. Braces {}, if and switch
The first bracket is in the same column as the keyword, and the last bracket is in the same column as the keyword;
In the if structure, if and elseif are with the two circles before and after The brackets should be on the same line, with a space on the left and right, and all curly brackets should be on a separate line. In addition, even if there is only one line of statement after the if, curly brackets still need to be added to ensure a clear structure; in the
switch structure, usually when a case block is processed, the subsequent case block processing will be skipped, so in most cases it is necessary Add break. The position of break depends on the program logic. It can be on the same line as case or on a new line. However, in the same switch body, the position format of break should be consistent.
The following are examples that comply with the above specifications:
If ($condition)
{
switch ($var)
{
case 1: echo 'var is 1'; break;
case 2: echo 'var is 2'; break;
default: echo 'var is neither 1 or 2'; break;
}
}
else
{
switch ($str)
{
case 'abc':
$result = 'abc';
break;
default:
$result = 'unknown';
break;
}
}
4.3.3. Operators, parentheses, spaces, keywords and functions
Each operator is between the values or expressions involved in the operation on both sides There must be a space. The only exception is that there are no spaces on both sides of the character concatenation operator;
The left bracket "(" should be closely together with the function keyword. Otherwise, a space should be used to separate the "(" from the previous content. ;
Except for the right bracket ")" followed by ")" or ".", all other brackets are separated by spaces;
Unless specifically required in strings, under normal circumstances, they do not appear in programs and HTML Two consecutive spaces;
Under any circumstances, blank lines with TAB or spaces cannot appear in PHP programs, that is: such blank lines should not contain any TAB or spaces. At the same time, no extra TAB or spaces can appear at the end of any program line. Most editors have the function of automatically removing spaces at the end of lines. If the habit is not developed well, you can use it temporarily to avoid unnecessary spaces;
For each large program body, blank lines should be added above and below, two Only use 1 blank line between program blocks, multiple lines are prohibited.
Try to divide the program blocks as reasonably as possible. Too large or too small divisions will affect other people’s reading and understanding of the code. Generally, it can be divided by larger function definition, logical structure, and functional structure. Program blocks with less than 15 lines do not need to add blank lines;
In the description or display part, if the content contains mixed Chinese, numbers, and English words, spaces should be added before and after the numbers or English words.
Based on the above principles, the following examples illustrate the correct writing format:
$result = (($a + 1) * 3 / 2 + $num)).'Test';
$condition ? func1($var) : func2($var);
$condition ? $long_statement
: $another_long_statement;
if ($flag)
{
//Statements
//More than 15 lines
}
Showmessage('Please use restore.php tool to restore data.');

php把负数转为正整数的方法:1、使用abs()函数将负数转为正数,使用intval()函数对正数取整,转为正整数,语法“intval(abs($number))”;2、利用“~”位运算符将负数取反加一,语法“~$number + 1”。

实现方法:1、使用“sleep(延迟秒数)”语句,可延迟执行函数若干秒;2、使用“time_nanosleep(延迟秒数,延迟纳秒数)”语句,可延迟执行函数若干秒和纳秒;3、使用“time_sleep_until(time()+7)”语句。

php除以100保留两位小数的方法:1、利用“/”运算符进行除法运算,语法“数值 / 100”;2、使用“number_format(除法结果, 2)”或“sprintf("%.2f",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

php字符串有下标。在PHP中,下标不仅可以应用于数组和对象,还可应用于字符串,利用字符串的下标和中括号“[]”可以访问指定索引位置的字符,并对该字符进行读写,语法“字符串名[下标值]”;字符串的下标值(索引值)只能是整数类型,起始值为0。

判断方法:1、使用“strtotime("年-月-日")”语句将给定的年月日转换为时间戳格式;2、用“date("z",时间戳)+1”语句计算指定时间戳是一年的第几天。date()返回的天数是从0开始计算的,因此真实天数需要在此基础上加1。

在php中,可以使用substr()函数来读取字符串后几个字符,只需要将该函数的第二个参数设置为负值,第三个参数省略即可;语法为“substr(字符串,-n)”,表示读取从字符串结尾处向前数第n个字符开始,直到字符串结尾的全部字符。

方法:1、用“str_replace(" ","其他字符",$str)”语句,可将nbsp符替换为其他字符;2、用“preg_replace("/(\s|\ \;||\xc2\xa0)/","其他字符",$str)”语句。

php判断有没有小数点的方法:1、使用“strpos(数字字符串,'.')”语法,如果返回小数点在字符串中第一次出现的位置,则有小数点;2、使用“strrpos(数字字符串,'.')”语句,如果返回小数点在字符串中最后一次出现的位置,则有。


Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

SublimeText3 English version
Recommended: Win version, supports code prompts!

DVWA
Damn Vulnerable Web App (DVWA) is a PHP/MySQL web application that is very vulnerable. Its main goals are to be an aid for security professionals to test their skills and tools in a legal environment, to help web developers better understand the process of securing web applications, and to help teachers/students teach/learn in a classroom environment Web application security. The goal of DVWA is to practice some of the most common web vulnerabilities through a simple and straightforward interface, with varying degrees of difficulty. Please note that this software

mPDF
mPDF is a PHP library that can generate PDF files from UTF-8 encoded HTML. The original author, Ian Back, wrote mPDF to output PDF files "on the fly" from his website and handle different languages. It is slower than original scripts like HTML2FPDF and produces larger files when using Unicode fonts, but supports CSS styles etc. and has a lot of enhancements. Supports almost all languages, including RTL (Arabic and Hebrew) and CJK (Chinese, Japanese and Korean). Supports nested block-level elements (such as P, DIV),

Notepad++7.3.1
Easy-to-use and free code editor

PhpStorm Mac version
The latest (2018.2.1) professional PHP integrated development tool
