search
HomePHP LibrariesOther librariesDocumentation generated PHP classes
phpDocumentor2-develop document generation library
#!/usr/bin/env php
<?php
/**
 * phpDocumentor
 *
 * PHP Version 5.3
 *
 * @copyright 2010-2013 Mike van Riel / Naenius (http://www.naenius.com)
 * @license   http://www.opensource.org/licenses/mit-license.php MIT
 * @link      http://phpdoc.org
 */


##trigger_error('phpDocumentor2 should be run from the phpdoc file, not phpdoc.php', E_USER_DEPRECATED);

require_once __DIR__.'/phpdoc';

phpDocumentor 2 is a program that can analyze PHP source code and comment blocks and generate documentation. Inspired by phpdocumentor 1 and javadoc, it continues to innovate using some new technologies and supports new features of php.

Features of phpDocumentor 2:

Compatible with php5.3, fully supports namespaces and closures, etc.

Recognition supports any tag, as well as some appended ones (such as @link).
Faster processing speed. Compared with phpDocumentor 1, the processing time under Zend Framework has been significantly reduced.
Low memory consumption, the memory consumption of small, medium and large projects is less than 20MB, 40MB and 100MB respectively.
Incremental analysis. If you have the structure.xml file obtained by running phpdoc before, the speed of regenerating the document after minor modifications will be increased by 80%.
It’s easy to create a template, just 1 small step and edit 3 files.
Compatible with the 1st generation command line. For example --directory, --file and --target
two-step processing. First generate a structure file. You can format relevant information according to this file and use your own tools to display the information!


Disclaimer

All resources on this site are contributed by netizens or reprinted by major download sites. Please check the integrity of the software yourself! All resources on this site are for learning reference only. Please do not use them for commercial purposes. Otherwise, you will be responsible for all consequences! If there is any infringement, please contact us to delete it. Contact information: admin@php.cn

Related Article

What are the implications of using compiler-generated copy constructors for classes with nested objects?What are the implications of using compiler-generated copy constructors for classes with nested objects?

13Nov2024

Compiler-Generated Copy Constructors for Classes with Nested ObjectsWhen a class contains other objects and does not explicitly define a copy...

How Do I Link Static Libraries That Depend on Other Static Libraries?How Do I Link Static Libraries That Depend on Other Static Libraries?

13Dec2024

Linking Static Libraries to Other Static Libraries: A Comprehensive ApproachStatic libraries provide a convenient mechanism to package reusable...

Can C# Classes Be Generated from an XML File?Can C# Classes Be Generated from an XML File?

28Jan2025

Generate C# Classes from XMLQuestion: Is it possible to generate C# classes from an XML file?Answer:In .NET 4.5 and later versions, Visual Studio...

How to Silence TensorFlow\'s Debugging Output?How to Silence TensorFlow\'s Debugging Output?

28Oct2024

Suppression of Tensorflow Debugging OutputTensorflow prints extensive information about loaded libraries, found devices, and other debugging data...

How Does jQuery Simplify DOM Manipulation for Web Developers?How Does jQuery Simplify DOM Manipulation for Web Developers?

03Jan2025

Overflow: Hidden and Expansion of HeightjQuery distinguishes itself from other JavaScript libraries through its cross-platform compatibility and...

How to Properly Use a PDO Connection Across Multiple Classes in PHP?How to Properly Use a PDO Connection Across Multiple Classes in PHP?

21Dec2024

How to Use PDO Connection in Other Classes?Understanding the Puzzling ErrorAn error message stating "Uncaught Error: Call to undefined method...

See all articles