PHP编程规范
一直以来我都是以php函数的风格来写php,所有变量,函数,类都使用小写,单词之间以下划线隔开,一直比较排斥驼峰式的代码规范,个人觉得在大小写字母之间的书写代码,很麻烦,而且PHP自己的函数都是小写,为什么我不用这种格式呢?
良好的代码书写习惯 + 良好的注释习惯 + PhpDocumentor = 程序说明书
一个团队,必须有整齐的代码书写习惯,如果再配上统一的IDE开发环境,详细的任务编码流程,完善的代码测试(如:SimpleTest),那么整个团队的开发效率将会有很大的提高。
如果你的IDE是Eclipse,那么你可以很方便的进行代码测试,使用SimpleTest参考http://www.guogoul.com/2008/05/19/simpletest_1/
说明: 本规范由EasyChen 借鉴 SINA网络应用开发部《C++开发规范》和互动技术部《PHP4开发规范》,以及phpDocument规范 整理出的开发规范. 我觉得非常不错, 适合PHP的开发. 给大家参考, 养成一个良好的编程风格是非常有必要的。(转载)
第1章 命名规范1.1变量1.1.1全局变量
全局变量使用$g_开头,如$g_data_list。
1.1.2 一般变量
一般的变量使用小写字母命名,单词之间使用下划线分隔。
变量名字应该使用名词或者形容词+名词的方式。如$value,$new_value。
1.1.3 临时变量
不要将在循环中频繁使用的临时变量如$i,$j等用于其它用途。
1.2 函数
函数采用小写字母命名,单词之间使用下划线分隔。
函数的命名建议使用动词+名词的方式,如get_user_img。
完成一组功能的函数放到一个文件中,存放函数的文件采用function_name.func.php命名。
1.3 类
类使用英文的大小写来分隔单词,包括首个单词,所有单词的首字母大写,如PageManager;
在类中,方法放到属性定义前边、公用方法放到专用方法前边;
一般情况下,一个类对应到一个文件;
当一些类关系紧密时,可以存放在一个文件中;
存放类的文件采用ClassName.class.php方式命名。
1.4 方法
方法使用英文的大小写来分隔单词,除首个单词外,其他单词的首字母大写,如getCurrentPage();
不要采用不常用的缩写,如where2go();
使用常用的缩写时,只大写首字母,如getHtml()。
第2章 版式规则
2.1 语义分隔
各个函数、方法之间应该采用空行间隔;
同一个函数中联系紧密的语句之间可以不换行,其他情况需要换行。
2.2 空格规则
2.2.1 逻辑运算符前后必须加空格
正确 $a == $b;
错误 $a==$b;
$a ==$b;
备注 -
正确 $a++; $a?;
错误 $a ++; $a ?;
备注 加一减一运算符不能加空格。
2.2.2 多个参数分隔时必须加空格
正确 $g_pro , $g_user , g_show;
get_db_info($host, $user, $passwd);
错误 $g_pro,$g_user,$g_show;
get_db_info($host,$user,$passwd);
备注 -
2.2.3 语法关键字后必须加空格
例如:If, for , while, switch …..
正确 for ($i = 0; $i 错误 for($i = 0; $i 备注 -
2.3 字符串和变量连接规则
字符串与变量连接使用’.'号时,必须在’.'前后加空格,使用”号时,必须在变量前后加”{}”。
正确 $my_name = ’file_’ . $var1;
$my_name = ”file_{$var1}”;
错误 $my_name = ”file_’.$var1;
$my_name = ”file_$var1″;
备注 -
2.4 圆括号规则
函数名后括号不需要加空格、语法关键字后的括号必须加空格。
正确 for ($i = 0; $i strlen($my_name);
错误 for($i = 0; $i strlen ($my_name);
备注 -
2.5 花括号规则
花括号必须为上下对应。
正确
if ($a)
{
$b = $a;
}
错误 if ($a){
$b = $a;
}
备注 -
2.6 数组定义规则
数组定义和使用时中key值前后必须加单引号。
PHP 代码:
下载: php_array.php //正确
array(
'name' => ‘d5s.cn’,
‘gender’ => ‘php’
);
//错误
array(
name => ‘d5s.cn’,
gender => ‘php’
);
?>
2.7 SQL规则
在PHP中嵌入的SQL语句关键字全部采用大写;
表名和字段名要用反引号(`)引起来以防止因为字段名中包含空格而出现错误;
数据值两边用单引号”包括,并且应确保数据值中的单引号已经转义以防止SQL注入。
正确 $sql = ”SELECT `user`.`name` FROM `user` WHERE `id` = ’$id’ LIMIT 1″;
错误 $sql = ”select name.user from name where id = $id ”;
备注 -
第3章 注释规则
3.1 一般规则
不写不必要的注释;只有当代码不能很好地说明逻辑时,才用注释补充;
把注释看成程序的一部分,在编写/维护代码时同时编写/维护注释;
注释完全采用PHPDocumentor的规范,以方便用其生成API级文档。
3.2 详细规则
请参见PHPDocumentor手册。下边给出各个部分的注释示范。
3.2.1 版权信息
注释名称 版权信息
注释示范 //
// +?????????????????-+
// | phpDocumentor |
// +?????????????????-+
// | Copyright (c) 2000-2003 Joshua Eichorn |
// | Email jeichorn@phpdoc.org |
// | Web http://www.phpdoc.org |
// +?????????????????-+
// | This source file is subject to PHP License |
// +?????????????????-+
//
备注 使用//来标示版权信息,以免和PHPDocumentor的page-level DocBlock发生冲突
3.2.2文件头注释示例
注释名称 文件头注释
注释示范
下载: php_doc.php * All abstract representations of inline tags are in this file
* @package phpDocumentor
* @subpackage InlineTags
* @since separate file since version 1.2
* @version $Id $
*/
?>
备注
1 文件头注释需要指明所属的包和子包
2 在@version中加上$ID,以方便使用CVS管理文件
3.2.3 类注释示例
注释名称 类注释
注释示范
下载: php_class.php /**
* Use this element to represent an {@}inline tag} like {@}link}
* @see parserStringWithInlineTags
* @package phpDocumentor
* @subpackage InlineTags
* @author Greg Beaver
* @since 1.0rc1
* @version $Revision: 1.21.2.6 $
* @tutorial inlinetags.pkg
*/
?>
备注 -
3.2.4 类属性注释示例
注释名称 类属性注释
注释示范
下载: php.php /** var $type = 'inlinetag';
* Element type
*
* Type is used by many functions to skip the hassle of
*
*
* if get_class($blah) == ‘parserBlah’
*
* always "inlinetag"
* @var string
*/
?>
备注 -
3.2.5 函数/类方法注释示例
注释名称 函数/类方法注释
注释示范
下载: php.php /** function getString() '';
* @return string always ''
* calculate the short description of a DocBlock
* @see parserStringWithInlineTags::getString()
* @see parserStringWithInlineTags::trimmedStrlen()
*/
{
return
}
?>

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

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

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

Comply with PHP writing specifications: Improve teamwork and code collaborative development capabilities Introduction: In software development, code quality and teamwork are crucial. Complying with programming standards is one of the effective means to improve code quality and teamwork. This article will focus on how to comply with PHP writing standards to improve teamwork and code collaborative development capabilities. 1. Naming conventions Good naming conventions can increase the readability and maintainability of code. In PHP programming, we recommend following the following naming convention: Use camelCase naming for variables and functions, such as

Programming disciplines are crucial to ensure code quality and maintainability, especially when developing PHP applications. One of the common requirements is efficient validation of input strings to ensure that they contain only numeric and alphabetic characters. This article will introduce how to write code in PHP to achieve this requirement while following programming conventions. Overview of Programming Standards In PHP programming, following certain programming standards can make the code easier to read and maintain, while helping to reduce errors and improve code performance. Here are some programming guideline recommendations: Use intentional

Explore the secrets of PHP writing specifications: In-depth understanding of best practices Introduction: PHP is a programming language widely used in web development. Its flexibility and convenience allow developers to use it widely in projects. However, due to the characteristics of the PHP language and the diversity of programming styles, the readability and maintainability of the code are inconsistent. In order to solve this problem, it is crucial to develop PHP writing standards. This article will delve into the mysteries of PHP writing disciplines and provide some best practice code examples. 1. Naming conventions compiled in PHP

Best practices for PHP writing specifications: Write clean and elegant code Introduction: In PHP development, writing clean and elegant code is the key to improving code quality and maintainability. This article will explore several best practices to help developers write high-quality PHP code, thereby improving the maintainability and readability of the project. 1. Unified coding standards In a project, the coding styles of different developers may vary greatly, which is a huge challenge to the readability and maintainability of the code. Therefore, it is very important to develop and adhere to unified coding standards.

Detailed explanation of PHP writing specifications: Create amazing coding style Introduction: In the field of software development, excellent coding style is a programmer's advantage. PHP is a commonly used programming language. Good writing standards can improve the readability, maintainability and collaboration of the code. This article will introduce PHP writing specifications in detail to help you create an amazing coding style. 1. Naming specifications 1.1 Naming variables and functions Variables and functions should use meaningful and clear names, using a combination of lowercase letters and underscores. Variable names should use camelCase

Best practices for writing specifications in PHP: Creating an efficient and maintainable code base Introduction: With the rapid development of Internet technology, PHP has become one of the most popular development languages. As a flexible scripting language, PHP has unparalleled advantages in building dynamic websites and web applications. However, if we don’t follow some PHP coding best practices, our codebase can become unmaintainable, unstable, and inefficient. This article will introduce some noteworthy PHP coding standards to help developers create efficient

Practice PHP writing standards: Tips for improving code structure and layout Introduction: In PHP development, good code structure and layout are very important, it can help us improve code readability, maintainability and scalability. This article will introduce some practical techniques to improve the structure and layout of PHP code, as well as corresponding code examples. 1. Use appropriate file and directory structures. A good file and directory structure can help us better organize and manage our code. Generally, we can organize files and directories in the following way: put related classes

Implementation strategies for PHP writing specifications: ensuring high efficiency of team development In today's software development field, team collaboration has become the norm. In order to ensure high efficiency of team development, writing specifications has become an essential link. This article will introduce the implementation strategy of PHP writing specifications, with code examples to help the development team better understand and apply these specifications. Using consistent naming conventions is one of the important factors in code readability and maintainability. Team members should agree on consistent naming rules to ensure code consistency and readability
