PHP Advanced Programming Study Notes 20140612
An important part of software development is document writing. It can help future program maintainers and users understand your thinking during development. It also makes it easier to review the code in the future without knowing where to start. Documents also play an important role in enabling interactions between objects without knowing the details of the objects to be accessed. There are some well-established industry standard formats for document writing, and adhering to these industry standards will help create easy-to-read representations and make it possible to automatically generate manuals.
Coding specifications
Coding standards may have many developers having their own views and opinions, and everyone is different. In fact, as long as team members reach an agreement and follow the same standards, it will be fine.
The PHP community is flourishing, with a large number of function libraries, frameworks and components. PHP developers usually use several external libraries in their own projects, so it is very important for PHP code to follow or be as close as possible to the same code style, which allows developers to easily integrate multiple code libraries into their own projects. The Framework Interop Group (ie the PHP Standards Group) has published a series of recommended styles. Some of them are about coding styles, namely PSR-0, PSR-1, PSR-2 and PSR-4. Typically, your PHP code should follow one or more of these standards so that other developers can easily read and use your code. These standards add new rules to the previous standard, so using PSR-1 requires compliance with PSR-0, but does not require compliance with PSR-2.
- Read PSR-0
- Read PSR-1
- Read PSR-2
- Read PSR-4
- Read about PEAR Coding Standards
- Read about Zend Coding Standards
- Read about Symfony Coding Standards
Documentation Writing - Types of Comments
There are three commonly used comment methods in PHP. Comments are a way to increase the readability and maintainability of a program, not the only way. Readability and maintainability are mainly improved in code naming and project organization.
<span>//</span><span>这是一个单行注释类型</span> <span>/*</span><span> 这是一个多行注释类型 第二行注释 </span><span>*/</span> <span>/*</span><span>* * * 这种形式的注释被称为 文档注释 </span><span>*/</span>
The first type of comments can be said to be for people to read, and are generally used for shorter comments. The second type, is used in code that requires a lot of comments. The third type of comments, called documentation comments, can be interpreted and placed in a manual in a fixed format. The types of comments mainly include: class comments, attribute comments, method comments, variable comments, key algorithms, important code implementations, etc. All of these pieces are woven together so that people at a later date will know exactly what you did and why you did it.
Document Writing - Grammar Analysis
The conversion process from programming language to executable code is called grammar parsing. When the grammar parser encounters a normal comment, it will recognize it and ignore it, and clean up the data in the comment, so general comments cannot import metadata.
Metadata
The definition of metadata is data about data. It is a widespread phenomenon with specific definitions and applications in many fields. It is defined as: Data describing data, descriptive information about data and information resources. PHP contains metadata for most programming elements. However, you may want to embed more metadata, as metadata is very useful in automatically generating documents. This functionality can be simulated through the parsing of documentation comments. If you create document comments that follow a specific format, the parser can automatically convert the comments into meaningful documents.
PHPDoc
PHPDoc is a solution for maintaining PHP documentation. It defines a structure for documentation comments, allowing parsers to parse them in a consistent way. With PHPDoc you can create manuals from embedded documents. Like all documentation comments, PHPDoc requirements must end with /**Annotation declaration begins. What's special about PHPDoc is the tags. Tags are represented by starting with @ followed by a predefined identifier. For more information about PHPDoc, please refer to http://www.phpdoc.org/docs/latest/index.html
Annotations for the PHPDoc specification
The comment block must start with "/**" and end with "*/".
Each line between the opening comment and the closing comment begins with an asterisk (*).
Thetag must be written on a new line starting with at-sign (@), followed by the sign
Several tags support or require a type to represent the type of the value contained in the associated element. An example of this is "param tag , to identify aMethod or functionType of parameter.
Here is a full listing:string:A piece of text of an unspecified length. 下面列出PHPDoc的全部标签:
int or integer:A whole number that may be either positive or negative.
float:A real, or decimal, number that may be either positive or negative.
bool or boolean:A variable that can only contain the state ‘true’ or ‘false’.
array:A collection of variables of unknown type. It is possible to specify the types of array members, see the chapter on arrays for more information.
resource:A file handler or other system resource as described in the PHP manual.
null:The value contained, or returned, is literally null. This type is not to be confused with void, which is the total absence of a variable or value (usually used with the @return tag).
callable:A function or method that can be passed by a variable, see the PHP manual for more information on callables.
@api
@author
@category
@copyright
@deprecated
@example
@filesource
@global
@ignore
@internal
@license
@link
@method
@package
@param
@property
@property-read
@property-write
@return
@see
@since
@source
@subpackage
@throws
@todo
@uses
@var
@version

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",除法结果)”语句进行四舍五入的处理值,并保留两位小数。

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

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

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

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

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 Mac version
God-level code editing software (SublimeText3)

SAP NetWeaver Server Adapter for Eclipse
Integrate Eclipse with SAP NetWeaver application server.

Atom editor mac version download
The most popular open source editor

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),

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.
