1. What is phpDocumentor?
PHPDocumentor is a tool written in PHP. For php programs with standard annotations, it can quickly generate API documents with functions such as cross-reference, indexing, etc. The old version is phpdoc, which has been renamed phpDocumentor since 1.3.0. The new version has added support for php5 syntax. At the same time, documents can be generated by operating on the client browser. The documents can be converted into PDF, HTML, and CHM, which is very convenient.
When PHPDocumentor works, it will scan the php source code below the specified directory, scan the keywords in it, intercept the comments that need to be analyzed, and then analyze the dedicated tags in the comments to generate an xml file. Then, based on the information of the analyzed classes and modules, a corresponding index is established to generate an xml file. For the generated xml file, use a customized template to output it as a file in the specified format.
2. Install phpDocumentor
Like other modules under pear, the installation of phpDocumentor is divided into two ways: automatic installation and manual installation. Both methods are very convenient:
a. Automatic installation via pear
Enter on the command line
pear install PhpDocumentor
b. Manual installation
Download the latest version of PhpDocumentor (now 1.4.0) and decompress the content.
3. How to generate documents using PhpDocumentor
Command line method:
In the directory where phpDocumentor is located, enter
Php –h
A detailed parameter table will be obtained, with several important parameters as follows:
-f File names to be analyzed, multiple files are separated by commas
-d Directory to be analyzed, multiple directories are divided by commas
-t The path to the generated document
-o The output document format, structure is output format: converter name: template directory.
For example: phpdoc -o HTML:frames:earthli -f -t docs
Web interface generation
In the new phpdoc, in addition to generating documents on the command line, you can also operate on the client browser to generate documents. The specific method is to first place the content of PhpDocumentor in the apache directory so that it can be accessed through the browser. After accessing, the following interface is displayed:
Click the files button to select the php file or folder to process. You can also ignore the processing of certain files by specifying Files to ignore under this interface.
Then click the output button to select the storage path and format of the generated document.
Finally, click create, and phpdocumentor will automatically start generating the document. The progress and status of the generation will be displayed at the bottom. If it is successful, it will be displayed.
Total Documentation Time: 1 seconds
done
Operation Completed!!
Then, we can view the generated document. If it is in pdf format, the name defaults to it.
4. Add specification comments to php code
PHPDocument is to generate documents from comments to your source code, so in the process of annotating your program, that is, the process of compiling documents.
From this point of view, PHPdoc prompts you to develop good programming habits, try to use standards, and make clear text annotations for your program, and at the same time, it also avoids the problems of the later preparation of documents and document updates that are not synchronized.
In phpdocumentor, comments are divided into documentary comments and non-documentary comments.
The so-called documentary comments are those multiple lines of comments placed before a specific keyword. A specific keyword refers to keywords that can be analyzed by phpdoc, such as class, var, etc. For specific comments, you can participate in Appendix 1.
Comments that are not preceded by keywords or are not standardized are called non-documentary comments. These comments will not be analyzed by phpdoc, nor will they appear in the API text you generate.
3.2 How to write documentary notes:
All documentary comments are a multi-line comment starting with /**, called DocBlock in phpDocumentor. DocBlock refers to the help information written by software developers about a keyword, so that others can know the specific purpose of the keyword and how to use it. PhpDocumentor specifies that a DocBlock contains the following information:
1. Function brief description area
2. Detailed description area
3. Tag tags
The first line of documentary comments is the function description area. The text generally briefly describes the functions of this class, method or function. The text of the function briefly described will be displayed in the index area in the generated document. The content of the function description area can be ended with an empty line or .
Behind the function description area is a blank line, followed by the detailed description area. This part mainly explains the functions and uses of your API. If possible, you can also give examples of usage, etc. In this part, you should focus on clarifying the usual uses and usage of your API functions or methods, and specify whether they are cross-platform (if involved). For platform-related information, you should treat them differently from those common information. The usual practice is to start a new line and write down the precautions or special information on a specific platform. This information should be sufficient so that your readers can write corresponding test information, such as boundary conditions, parameter ranges, breakpoints, etc.
Then there is also a blank line, followed by the document's tag, indicating some technical information, mainly the call parameter type, the return value is extremely type, the inheritance relationship, related methods/functions, etc.
For details, please refer to Section 4: Document Marking.
Tags such as <b> <code> can also be used in document comments. For details, please refer to Appendix 2.
Here is an example of a document comment
/**
* Function add, implements the addition of two numbers
*
* A simple addition calculation, the function accepts two numbers a and b and returns their sum c
*
* @param int Addition
* @param int is added
* @return integer
*/
function Add($a, $b)
{
return $a+$b;
}
The document is generated as follows:
Add
integer Add( int $a, int $b)
[line 45]
Function add, implements the addition of two numbers
Constants A simple addition calculation, the function accepts two numbers a and b and returns their sum c
Parameters
• int $a - add
• int $b - added
5. Document tags:
The scope of use of document tags refers to the keywords that the tag can be used to modify, or other document tags.
All document tags start with @ after * on each line. If the @ tag appears in the middle of a paragraph, this tag will be regarded as ordinary content and will be ignored.
@access
Range of use: class, function, var, define, module
This tag is used to indicate the access permissions of keywords: private, public or protected
@author
Indicate the author
@copyright
Use scope: class, function, var, define, module, use
Indicate copyright information
@deprecated
Use scope: class, function, var, define, module, consent, global, include
Specify keywords that are not used or discarded
@example
This tag is used to parse a piece of file content and highlight them. Phpdoc will try to read the file content from the file path given by the tag.
@const
Range of use: define
Used to indicate the constants of define in php
@final
Range of use: class, function, var
Indicates that the keyword is a final class, method, and attribute, and the derivation and modification are prohibited.
@filesource
Similar to example, except that the tag will directly read the content of the currently parsed php file and display it.
@global
Specifies the global variable referenced in this function
@ingore
Used to ignore specified keywords in the document
@license
Equivalent to the <a> in the html tag, first the URL, then the content to be displayed
For example <a href="">Baidu</a>
Can write @license Baidu
@link
Similar to license
But you can also point to any keyword in the document through link
@name
Assign an alias to the keyword.
@package
Use range: page level -> define, function, include
Class level -> class, var, methods
Used to logically divide one or several keywords into a group.
@abstrcut
Explain that the current class is an abstract class
@param
Specify the parameters of a function
@return
Specifies a return reference to a method or function
@static
Indicates that the character Guan Jian is static.
@var
Indicate the variable type
@version
Specify version information
@todo
Indicate where improvements should be made or not implemented
@throws
Indicates the error exception that this function may throw, and the extreme occurrence
As mentioned above, ordinary document tags must be marked with @ at the beginning of each line. In addition, there is a tag called inline tag, which is represented by {@}, which specifically includes the following:
{@link}
The same usage as @link
{@source}
Show the contents of a function or method
6. Some comment specifications
a. The comment must be
/**
* XXXXXXX
*/
Form of
b. For functions that reference global variables, glboal tags must be used.
c. For variables, their type must be marked with var (int, string, bool...)
d. The function must specify its parameters and return values through the param and return tags
e. For keywords that appear twice or more times, you should ignore the excess through ingore and only keep one
f. Where other functions or classes are called, link or other tags should be used to link to the corresponding part to facilitate reading of the document.
g. Use non-documentary annotations where necessary to improve code readability.
h. Descriptive content should be as concise as possible, and use phrases rather than sentences as much as possible.
i. Global variables, static variables and constants must be explained with corresponding tags
PHPDocumentor is a tool written in PHP. For php programs with standard annotations, it can quickly generate API documents with functions such as cross-reference, indexing, etc. The old version is phpdoc, which has been renamed phpDocumentor since 1.3.0. The new version has added support for php5 syntax. At the same time, documents can be generated by operating on the client browser. The documents can be converted into PDF, HTML, and CHM, which is very convenient.
When PHPDocumentor works, it will scan the php source code below the specified directory, scan the keywords in it, intercept the comments that need to be analyzed, and then analyze the dedicated tags in the comments to generate an xml file. Then, based on the information of the analyzed classes and modules, a corresponding index is established to generate an xml file. For the generated xml file, use a customized template to output it as a file in the specified format.
2. Install phpDocumentor
Like other modules under pear, the installation of phpDocumentor is divided into two ways: automatic installation and manual installation. Both methods are very convenient:
a. Automatic installation via pear
Enter on the command line
pear install PhpDocumentor
b. Manual installation
Download the latest version of PhpDocumentor (now 1.4.0) and decompress the content.
3. How to generate documents using PhpDocumentor
Command line method:
In the directory where phpDocumentor is located, enter
Php –h
A detailed parameter table will be obtained, with several important parameters as follows:
-f File names to be analyzed, multiple files are separated by commas
-d Directory to be analyzed, multiple directories are divided by commas
-t The path to the generated document
-o The output document format, structure is output format: converter name: template directory.
For example: phpdoc -o HTML:frames:earthli -f -t docs
Web interface generation
In the new phpdoc, in addition to generating documents on the command line, you can also operate on the client browser to generate documents. The specific method is to first place the content of PhpDocumentor in the apache directory so that it can be accessed through the browser. After accessing, the following interface is displayed:
Click the files button to select the php file or folder to process. You can also ignore the processing of certain files by specifying Files to ignore under this interface.
Then click the output button to select the storage path and format of the generated document.
Finally, click create, and phpdocumentor will automatically start generating the document. The progress and status of the generation will be displayed at the bottom. If it is successful, it will be displayed.
Total Documentation Time: 1 seconds
done
Operation Completed!!
Then, we can view the generated document. If it is in pdf format, the name defaults to it.
4. Add specification comments to php code
PHPDocument is to generate documents from comments to your source code, so in the process of annotating your program, that is, the process of compiling documents.
From this point of view, PHPdoc prompts you to develop good programming habits, try to use standards, and make clear text annotations for your program, and at the same time, it also avoids the problems of the later preparation of documents and document updates that are not synchronized.
In phpdocumentor, comments are divided into documentary comments and non-documentary comments.
The so-called documentary comments are those multiple lines of comments placed before a specific keyword. A specific keyword refers to keywords that can be analyzed by phpdoc, such as class, var, etc. For specific comments, you can participate in Appendix 1.
Comments that are not preceded by keywords or are not standardized are called non-documentary comments. These comments will not be analyzed by phpdoc, nor will they appear in the API text you generate.
3.2 How to write documentary notes:
All documentary comments are a multi-line comment starting with /**, called DocBlock in phpDocumentor. DocBlock refers to the help information written by software developers about a keyword, so that others can know the specific purpose of the keyword and how to use it. PhpDocumentor specifies that a DocBlock contains the following information:
1. Function brief description area
2. Detailed description area
3. Tag tags
The first line of documentary comments is the function description area. The text generally briefly describes the functions of this class, method or function. The text of the function briefly described will be displayed in the index area in the generated document. The content of the function description area can be ended with an empty line or .
Behind the function description area is a blank line, followed by the detailed description area. This part mainly explains the functions and uses of your API. If possible, you can also give examples of usage, etc. In this part, you should focus on clarifying the usual uses and usage of your API functions or methods, and specify whether they are cross-platform (if involved). For platform-related information, you should treat them differently from those common information. The usual practice is to start a new line and write down the precautions or special information on a specific platform. This information should be sufficient so that your readers can write corresponding test information, such as boundary conditions, parameter ranges, breakpoints, etc.
Then there is also a blank line, followed by the document's tag, indicating some technical information, mainly the call parameter type, the return value is extremely type, the inheritance relationship, related methods/functions, etc.
For details, please refer to Section 4: Document Marking.
Tags such as <b> <code> can also be used in document comments. For details, please refer to Appendix 2.
Here is an example of a document comment
Copy the codeThe code is as follows:
/**
* Function add, implements the addition of two numbers
*
* A simple addition calculation, the function accepts two numbers a and b and returns their sum c
*
* @param int Addition
* @param int is added
* @return integer
*/
function Add($a, $b)
{
return $a+$b;
}
The document is generated as follows:
Add
integer Add( int $a, int $b)
[line 45]
Function add, implements the addition of two numbers
Constants A simple addition calculation, the function accepts two numbers a and b and returns their sum c
Parameters
• int $a - add
• int $b - added
5. Document tags:
The scope of use of document tags refers to the keywords that the tag can be used to modify, or other document tags.
All document tags start with @ after * on each line. If the @ tag appears in the middle of a paragraph, this tag will be regarded as ordinary content and will be ignored.
@access
Range of use: class, function, var, define, module
This tag is used to indicate the access permissions of keywords: private, public or protected
@author
Indicate the author
@copyright
Use scope: class, function, var, define, module, use
Indicate copyright information
@deprecated
Use scope: class, function, var, define, module, consent, global, include
Specify keywords that are not used or discarded
@example
This tag is used to parse a piece of file content and highlight them. Phpdoc will try to read the file content from the file path given by the tag.
@const
Range of use: define
Used to indicate the constants of define in php
@final
Range of use: class, function, var
Indicates that the keyword is a final class, method, and attribute, and the derivation and modification are prohibited.
@filesource
Similar to example, except that the tag will directly read the content of the currently parsed php file and display it.
@global
Specifies the global variable referenced in this function
@ingore
Used to ignore specified keywords in the document
@license
Equivalent to the <a> in the html tag, first the URL, then the content to be displayed
For example <a href="">Baidu</a>
Can write @license Baidu
@link
Similar to license
But you can also point to any keyword in the document through link
@name
Assign an alias to the keyword.
@package
Use range: page level -> define, function, include
Class level -> class, var, methods
Used to logically divide one or several keywords into a group.
@abstrcut
Explain that the current class is an abstract class
@param
Specify the parameters of a function
@return
Specifies a return reference to a method or function
@static
Indicates that the character Guan Jian is static.
@var
Indicate the variable type
@version
Specify version information
@todo
Indicate where improvements should be made or not implemented
@throws
Indicates the error exception that this function may throw, and the extreme occurrence
As mentioned above, ordinary document tags must be marked with @ at the beginning of each line. In addition, there is a tag called inline tag, which is represented by {@}, which specifically includes the following:
{@link}
The same usage as @link
{@source}
Show the contents of a function or method
6. Some comment specifications
a. The comment must be
/**
* XXXXXXX
*/
Form of
b. For functions that reference global variables, glboal tags must be used.
c. For variables, their type must be marked with var (int, string, bool...)
d. The function must specify its parameters and return values through the param and return tags
e. For keywords that appear twice or more times, you should ignore the excess through ingore and only keep one
f. Where other functions or classes are called, link or other tags should be used to link to the corresponding part to facilitate reading of the document.
g. Use non-documentary annotations where necessary to improve code readability.
h. Descriptive content should be as concise as possible, and use phrases rather than sentences as much as possible.
i. Global variables, static variables and constants must be explained with corresponding tags
12Next pageRead the full text