search
HomeBackend DevelopmentPHP TutorialSpecification 2_PHP Tutorial
Specification 2_PHP TutorialJul 13, 2016 pm 05:22 PM
elsethendifferentlayoutbracketsstyleFormatofprogrammerflowerspecificationPass

If Then Else Format Layout This is decided by the programmer. Different brace styles will produce slightly different looks. A common way is: if (condition 1) // comment { } else if (condition 2) // comment { } else // comment { } If you use an else if statement, it is usually best to have an else block to use it To handle other unhandled situations. If possible, put a record information comment in else, even if there is no action in else. Conditional formatting always puts the constant to the left of the equal/inequality sign, for example: if ( 6 == $errorNum ) ... One reason is that if you leave out an equal sign in the equation, the syntax checker will report an error for you . The second reason is that you can find the value immediately instead of finding it at the end of your expression. It takes a little time to get used to the format, but it works really well. -------------------------------------------------- ------------------------------- switch format Falling through a case statement into the next case statement shall be permitted as long as a comment is included. The default case should always exist, it should not be reached, but if it is reached it will trigger an error. If you are creating a variable, put all the code in a block. For example switch (...) { case 1: ... // FALL THROUGH case 2: { $v = get_week_number(); ... } break; default: } ------------ -------------------------------------------------- ------------------ Use of continue, break and ?: Continue and Break Continue and break are actually hidden goto methods in disguise. Continue and break are like goto, they work magic in your code, so use them sparingly (as little as possible). Using this simple magic, readers will be directed, for some undisclosed reason, to places only God knows. Continue has two main problems: It can bypass test conditions. It can bypass equality/inequality expressions. Look at the following example and consider where the problems occur: while (TRUE) { ... // A lot of code ... if (/* some condition */) { continue; } ... // A lot of code ... if ( $i++ > STOP_VALUE) break; } Note: "A lot of code" is required so that programmers cannot find errors so easily. From the above examples, we can draw a further rule: mixing continue and break is the right way to cause disaster. ?: The trouble is that people tend to try to cram a lot of code between ? and :. Here are some clear linking rules: Put the condition in parentheses to separate it from the rest of the code. If possible, actions can use simple functions. Put the actions, "?", and ":" on different lines, unless they can clearly be placed on the same line. For example (condition) ? funct1() : func2(); or (condition) ? long statement : another long statement; ----------------------- -------------------------------------------------- ----- Positioning of declaration blocks Declaration code blocks need to be aligned. Justification is clear. A similar block of code for variable initialization should be listed. The ??token should be adjacent to the type, not the name. For example var $mDate var& $mrDate var& $mrName var $mName $mDate = 0; $mrDate = NULL; $mrName = 0; $mName = NULL; -- -------------------------------------------------- ---------------------------- One statement per line Write only one statement per line unless the statements are closely related. -------------------------------------------------- ----------------------------- Short method code should be limited to one page. Rationale The idea is that each method represents a technique that accomplishes a separate purpose. Too many invalid arguments are a mistake in the long run. Calling a function is slower than not calling it at all, but this decision requires careful consideration (see premature optimization). -------------------------------------------------- -------------------------- Record all empty statements. Always record the empty block statements of for or while for clarity. I don’t know whether this piece of code was missed or was deliberately not written. while ($dest++ = $src++); // VOID ---------------------------------------------- ------------------------------------------ Do not use the default method to test for non-zero Do not use the default value to test non-zero values, that is, use: if (FAIL != f()) is better than the following method: if (f()) Even FAIL can contain a value of 0, which is what PHP considers false. . When someone decides to use -1 instead of 0 as a failure return value, an explicit test can help. Explicit comparison should be used even if the comparison value will not change; for example: if (!($bufsize % strlen($str))) should be written as: if (($bufsize % strlen($str)) == 0) A numeric (not Boolean) type representing the test. A common problem is using strcmp to test a character equation, and the result will never equal the default value. Non-zero tests are based on default values, so other functions or expressions will be subject to the following restrictions: they can only return 0 to indicate failure, and cannot have other values. Named so that a true return value is absolutely obvious, call the function IsValid() instead of Checkvalid().-------------------------------------------------- -------------------------- Most functions of the Boolean logic type return 0 when FALSE, but when a non-0 value is used, it means TRUE, so instead of testing a Boolean value with an equality of 1 (TRUE, YES, etc.), use an inequality of 0 (FALSE, NO, etc.) instead: if (TRUE == func()) { ... should be written as : if (FALSE != func()) { ... ---------------------------------------- ----------------------------------------------- Generally avoid embedded assignments Sometimes in some places we can see embedded assignment statements. Those structures are not a better method with less redundancy and strong readability. while ($a != ($c = getchar())) { process the character } The ++ and -- operators are similar to assignment statements. Therefore, for many purposes, side effects can occur when using functions. It is possible to improve runtime performance using embedded assignment. Regardless, programmers need to consider the tradeoff between increased speed and reduced maintainability when using embedded assignment statements. For example: a = b + c; d = a + r; Do not write: d = (a = b + c) + r; although the latter saves one cycle. But in the long run, as the maintenance costs of the program gradually increase and the program writers gradually forget about the code, the optimization gains in the mature period will be reduced. -------------------------------------------------- ----------------------------- Reuse yours and others' hard work Reuse across projects without a common structure Almost impossible. Objects conform to their existing service requirements. Different processes have different service requirements environments, which makes object reuse difficult. Developing a common structure requires a lot of design effort up front. When efforts are unsuccessful, no matter for whatever reason, there are several methods recommended: Ask for advice! Send an email to the group for help. This simple method is rarely used. Because some programmers feel that if they ask other people for help, they will look inferior. How stupid is this! Do new and interesting work, don't do what others have done over and over again. If you need source code for something, if someone has already done it, email the group for help. The results will be surprising! In many large groups, individuals often have no idea what others are doing. You might even find someone looking for something to do and volunteer to write code for you, and if people work together there's always a gold mine out there. Tell! When you do something, tell everyone about it. If you make something reusable, let others know. Don’t be shy, and don’t hide your work away to protect your pride. Once you get into the habit of sharing your work, everyone will gain more. Dont be Afraid of Small Libraries A common problem with code reuse is that people don't build libraries from the code they've worked on. A reusable class may be hiding in a program directory and will never be shared because the programmer won't split the class out and add it to the library. One of the reasons for this is that people don't like to make a small library and have some incorrect feelings about small libraries. Get over this feeling, the computer doesn't care how many libraries you have. If you have some code that can be reused and can't be put into an existing library, then make a new library. If people really thought about reuse, the library wouldn't stay that small for a long time.If you are afraid of having to update makefiles when libraries are recomposed or added then dont include libraries in your makefiles, include the idea of services. Base level makefiles define services that are each composed of a set of libraries. Higher level makefiles specify the services they want. When the libraries for a service change only the lower level makefiles will have to change. Keep a Repository Most companies have no idea what code they have. And most programmers still dont communicate what they have done or ask for what currently exists. The solution is to keep a repository of whats available. In an ideal world a programmer could go to a web page, browse or search a list of packaged libraries, taking what they need. If you can set up such a system where programmers voluntarily maintain such a system, great. If you have a librarian in charge of detecting reusability, even better. Another approach is to automatically generate a repository from the source code. This is done by using common class, method, library, and subsystem headers that can double as man pages and repository entries. -------------------------------------------------------------------------------- 评价注释 注释应该是讲述一个故事 Consider your comments a story describing the system. Expect your comments to be extracted by a robot and formed into a man page. Class comments are one part of the story, method signature comments are another part of the story, method arguments another part, and method implementation yet another part. All these parts should weave together and inform someone else at another point of time just exactly what you did and why. Document Decisions Comments should document decisions. At every point where you had a choice of what

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/532254.htmlTechArticleIf Then Else 格式 布局 这由程序员决定。不同的花括号样式会产生些微不同的样观。一个通用方式是: if (条件1) // 注释 { } else if (条件2) //...
Statement
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
pptm是什么格式pptm是什么格式Jan 11, 2021 pm 02:46 PM

pptm是office办公套件中powerpoint的一种文件格式,全名是“启用宏的PowerPoint演示文稿”。pptm文件只能用2007及以上版本的office软件打开,如果用其他版本软件打开会出现无法编辑、图片不完整等问题。

png是矢量图格式吗png是矢量图格式吗Sep 15, 2022 pm 03:14 PM

png不是矢量图格式;png格式指的是便携式网络图形,是一种采用无损压缩算法的位图格式,而矢量图片一般是指用制图软件或矢量工具绘制出的图片文件,也称为面向对象的图像或绘图图像,在数学上定义为一系列由线连接的点。

ibooks支持的格式是什么ibooks支持的格式是什么Sep 15, 2022 am 11:31 AM

ibooks支持的格式:1、ePub格式,该格式是“Electronic Publication”的缩写,是一个自由的开放标准,文字内容可以根据阅读设备的特性,以最适于阅读的方式显示;2、PDF格式,该格式是“Portable Document Format”的简称,是一款便携式文档格式。

ipa是什么格式ipa是什么格式Aug 24, 2022 pm 03:16 PM

ipa是苹果应用程序文件格式。ipa文件实质是一个zip压缩包,包含 3 个组件:1、payload目录下的app目录,这个是软件的主程序;2、iTunesArtwork,实质是一个无后缀名的png图片,用来在iTunes中显示图标;3、iTunesMetadata.plist,用于记录购买者信息、售价等数据。

Python学习中所需的变量命名规范Python学习中所需的变量命名规范Jan 20, 2024 am 09:03 AM

学习Python时需要了解的变量命名规范在学习Python编程语言时,一个重要的方面是学习如何正确命名和使用变量。变量是用来存储和表示数据的标识符。良好的变量命名规范不仅能提高代码的可读性,还能减少出错的可能性。本文将介绍一些常用的变量命名规范,并给出相应的代码示例。使用有意义的名字变量名应该具有清晰的含义,能够描述变量所存储的数据。使用有意义的名字可以让其

3gp是什么格式文件3gp是什么格式文件Aug 26, 2022 pm 03:55 PM

3gp是视频格式文件。3GP是一种3G流媒体的视频编码容器格式,是MP4格式的一种简化版本,减少了储存空间和较低的频宽需求,让手机上有限的储存空间可以使用。3GP是MP4格式的一种简化版本,减少了储存空间和较低的频宽需求,让手机上有限的储存空间可以使用。3GP支持多种类型的视频文件以及多种音频文件格式。3GP文件传输总是发生在特定的秩序-最大和最重要的字节的信息总是首先转移。

jpeg是什么格式jpeg是什么格式Nov 25, 2022 pm 02:46 PM

JPEG是一种使用有损压缩方法保存的图像格式,文件后缀名为“.jpg”或“.jpeg”;作为压缩的结果,输出图像无法兼顾质量和大小。JPEG格式一直是在网络上存储和传输照片图像的选择,几乎所有操作系统现在都有支持JPEG图像可视化的查看器,这些图像通常也以JPG扩展名存储。

如何通过阅读最新PHP代码规范的源代码来理解其背后的设计原则和目标?如何通过阅读最新PHP代码规范的源代码来理解其背后的设计原则和目标?Sep 05, 2023 pm 02:46 PM

如何通过阅读最新PHP代码规范的源代码来理解其背后的设计原则和目标?引言:在编写高质量的PHP代码时,遵循一定的代码规范是非常重要的。通过代码规范,可以提高代码的可读性、可维护性和可扩展性。而对于PHP语言来说,有一份被广泛采用的代码规范,即PSR(PHPStandardsRecommendations)。本文将介绍如何通过阅读最新PHP代码规范的源代码

See all articles

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

Hot Tools

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Dreamweaver Mac version

Dreamweaver Mac version

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SecLists

SecLists

SecLists is the ultimate security tester's companion. It is a collection of various types of lists that are frequently used during security assessments, all in one place. SecLists helps make security testing more efficient and productive by conveniently providing all the lists a security tester might need. List types include usernames, passwords, URLs, fuzzing payloads, sensitive data patterns, web shells, and more. The tester can simply pull this repository onto a new test machine and he will have access to every type of list he needs.