An in-depth look at using phpDocumentor to document PHP Source Code, and phpDocumentor internals
Table of Contents
Introduction
phpDocumentor Basics
Starting Out From Scratch
DocBlocks
DocBlock Description details
DocBlock Templates
Tags
Documenting your PHP project
Where to begin
Elements of the source code that can be documented
Dividing projects into packages
Advanced phpDocumentor: tutorials and extended Documentation
Running phpDocumentor
Using the new Web Interface docbuilder
Using the old Web Interface phpdoc.php or new_phpdoc.php
Using the Command-line tool
Running the command-line in MS Windows
Running the command-line in unix
-c, --config
-cp, --converterparams
-ct, --customtags
-dh, --hidden
-dc, --defaultcategoryname
-dn, --defaultpackagename
-d, --directory
-ed, --examplesdir
-f, --filename
-i, --ignore
-is, --ignoresymlinks
-it, --ignore-tags
-j, --javadocdesc
-o, --output
-pp, --parseprivate
-po, --packageoutput
-p, --pear
-q, --quiet
-ric, --readmeinstallchangelog
-s, --sourcecode
-t, --target
-tb, --templatebase
-ti, --title
-ue, --undocumentedelements
phpDocumentor's dynamic User-defined config files
phpDocumentor.ini - global configuration options
IntroductionphpDocumentor is the most advanced automatic documentation system written for PHP, in PHP. This package has many features:
NEW The first auto-documentor with PHP 5 support
Extended documentation in docbook format with linking to any element and to other documentation,
including sub-sections, from the source code (see phpDocumentor Tutorials)
docblock templates to cut down on repetition
XML:DocBook:peardoc2 templates for PEAR developers
Greater ease of extending a Converter, see Converter Manual
ability to parse any PHP file, regardless of documentation format
conforms loosely to the JavaDOC protocol,
and will be familiar to Java programmers
documents all includes, constants, functions, static functions, classes,
methods, static variables, class variables, and can document global variables and
external tutorials
auto-linking to pre-defined PHP functions
Output in HTML, CHM, PDF, XML DocBook formats
templateable with many bundled templates
automatic linking to elements in any documented package
documents name conflicts between packages to help avoid PHP errors
document CVS repository directly.
support for JavaDoc doclet-like output through Converters
error/warning tracking system
extreme class intelligence: inherits documentation, package
complete phpdoc.de DocBlock tag support. Additions include @var, @magic, @deprec, @todo, and phpdoc.de parsing of @param.
alphabetical indexing of all elements by package and overall
class trees
MUCH more than just this short list
phpDocumentor BasicsStarting Out From ScratchThe documentation process begins with the most basic element of phpDocumentor: a
Documentation block or DocBlock. A basic
DocBlock looks like this:
/**
*
*/
A DocBlock is an extended C++-style PHP comment that begins with "/**" and has
an "*" at the beginning of every line. DocBlocks precede the element they are documenting.
Any line within a DocBlock that doesn't begin with a * will be ignored.
To document function "foo()", place the DocBlock immediately before the function declaration:
/**
* Defies imagination, extends boundaries and saves the world ...all before breakfast!
*/
function foo()
{
}
This example will apply the DocBlock to "define('me',2);" instead of to "function foo()":
/**
* DocBlock for function foo?
*
* No, this will be for the constant me!
*/
function foo($param = me)
{
}
define() statements, functions, classes, class methods, and class vars, include()
statements, and global variables can all be documented, see
Elements of the source code that can be documented
DocBlocksA DocBlock contains three basic segments in this order:
Short Description
Long Description
Tags
The Short Description starts on the first line, and can be terminated with a blank line
or a period. A period inside a word (like example.com or 0.1 %) is ignored. If the Short
Description would become more than three lines long, only the first line is taken. The Long
Description continues for as many lines as desired and may contain html markup for display
formatting. Here is a sample DocBlock with a Short and a Long Description:
/**
* return the date of Easter
*
* Using the formula from "Formulas that are way too complicated for anyone to
* ever understand except for me" by Irwin Nerdy, this function calculates the
* date of Easter given a date in the Ancient Mayan Calendar, if you can also
* guess the birthday of the author.
*/
Optionally, you may enclose all paragraphs in a <p></p> tag. Be careful,
if the first paragraph does not begin with <p>, phpDocumentor will assume that the
DocBlock is using the simple double linebreak to define paragraph breaks as in:
/**
* Short desc
*
* Long description first sentence starts here
* and continues on this line for a while
* finally concluding here at the end of
* this paragraph
*
* The blank line above denotes a paragraph break
*/
Here is an example of using <p>
/**
* Short desc
*
* <p>Long description first sentence starts here
* and continues on this line for a while
* finally concluding here at the end of
* this paragraph</p>
* This text is completely ignored! it is not enclosed in p tags
* <p>This is a new paragraph</p>
*/
phpDocumentor also supports JavaDoc's DocBlock format through the command-line
option -j, --javadocdesc. Due to
the non-xhtml compliant unmatched p tag, we highly recommend you avoid this syntax
whenever possible
/**
* <p>
* Short desc is only to the first period.
* This means a sentence like:
* "Parses Mr./Mrs. out of $_GET." will
* parse a short description of "Parses Mr."
* which is rather silly. Long description is
* the entire DocBlock description including the
* Short desc, and paragraphs begin where p is like:
* <p>
* The p above denotes a paragraph break
*/
phpDocumentor will convert all whitespace into a single space in the
long description, use paragraph breaks to define newlines, or <pre>,
as discussed in the next section.
DocBlock Description detailsAs of phpDocumentor 1.2.0, the long and short description of a DocBlock
is parsed for a few select html tags that determine additional formatting. Due
to the nature of phpDocumentor's output as multiple-format, straight html is not
allowed in a DocBlock, and will be converted into plain text by all of the
converters unless it is one of these tags:
<b> -- emphasize/bold text
<code> -- Use this to surround php code, some converters will highlight it
<br> -- hard line break, may be ignored by some converters
<i> -- italicize/mark as important
<kbd> -- denote keyboard input/screen display
<li> -- list item
<ol> -- ordered list
<p> -- If used to enclose all paragraphs, otherwise it will be considered text
<pre> -- Preserve line breaks and spacing, and assume all tags are text (like XML's CDATA)
<samp> -- denote sample or examples (non-php)
<ul> -- unordered list
<var> -- denote a variable name
Do not think of these tags as text, they are parsed into objects and converted
into the appropriate output format by the converter. So, a b tag may become
<emphasis> in DocBook, and a <p> tag might become " " (4 spaces)
in the PDF converter! The text output is determined by the template options file
options.ini found in the base directory of every template. For instance, the
options.ini file for the HTML:frames:default template is in
phpDocumentor/Converters/HTML/frames/templates/default/options.ini
For the rare case when the text "<b>" is needed in a DocBlock,
use a double delimiter as in <<b>>. phpDocumentor will automatically
translate that to the physical text "<b>".
Similarly, if you need an actual "@" in your DocBlock's description parts,
you should be careful to either ensure it is not the first character on a line,
or else escape it ("\@") to avoid it being interpreted as a PhpDocumentor tag marker.
/**
* Demonstrate an @include file
* line in a code block:
*
* <code>
* \@include somefile.php
* </code>
*/
This will parse as if it were:
/**
* Demonstrate an @include file
* line in a code block:
*
* <code>
* @include somefile.php
* </code>
*/
The <code>, <kbd>, and <pre> tags ignore any html listed above
except for their own closing tags (</code> </kbd> </pre>).
This is obviously necessary for each of those tag's behavior of controlling the appearance of the text
inside their tag blocks, without allowing other nested tags (like <b>) interfering inside them.
In general, other tags will allow other tags to be nested in them
(i.e. <samp><b>bold_my_sample</b></samp>).
New 1.2.0rc1: If you need to use the closing comment "*/"
in a DocBlock, use the special escape sequence "{@*}." Here's an example:
/**
* Simple DocBlock with a code example containing a docblock
*
* <code>
* /**
* * My sample DocBlock in code
* {@*}
* </code>
*/
This will parse as if it were:
/**
* Simple DocBlock with a code example containing a docblock
*
* <code>
* /**
* * My sample DocBlock in code
* */
* </code>
*/
New 1.2.0rc1: The phpEdit tool supports very clever list
extraction from DocBlocks, and now phpDocumentor supports the same cleverness. This example:
/**
* Simple DocBlock with simple lists
*
* Here's a simple list:
* - item 1
* - item 2, this one
* is multi-line
* - item 3
* end of list. Next list is ordered
* 1 ordered item 1
* 2 ordered item 2
* end of list. This is also ordered:
* 1. ordered item 1
* 2. ordered item 2
*/
phpDocumentor recognizes any simple list that begins with "-",
"+", "#" and "o", and any ordered list with
sequential numbers or numbers followed by "." as above. The list
delimiter must be followed by a space (not a tab!) and whitespace must line
up exactly, or phpDocumentor will not recognize the list items as being in
the same list.
/**
* Simple DocBlock with screwy lists
*
* +not a list at all, no space
* Here's 3 lists!
* - item 1
* - item 2, this one
* is multi-line
*- item 3
*/
Again, you must line up the list iterators in the same vertical column
in order for those list items to be considered "on the same list".
Also, you cannot create nested lists using the simple list iterators...
doing so means it's no longer a "simple" list! Varying the spacing
of the list iterators does not create nesting of the lists... it only starts up
new simple lists. If you specifically need a nested list, you must use the list
tags (<ol>, <ul>):
/**
* DocBlock with nested lists
*
* Here's the "complex" list:
* <ul>
* <li>outer item 1</li>
* <li>outer item 2, this one
* is multi-line</li>
* <li>item 3 is a nested inner list
* <ul>
* <li>inner item 1</li>
* <li>inner item 2</li>
* </ul>
* <li>outer item 4</li>
* </ul>
*/
In some cases, the text description in a doc tag can contain a list, be it simple
or complex. Notice that a title line is needed, with the list items themselves
beginning on the next line:
/**
* DocBlock with nested lists
* in the tag descriptions
* @todo My Simple TODO List
* - item 1
* - item 2
* - item 3
* @todo My Complex TODO List
* <ol>
* <li>item 1.0</li>
* <li>item 2.0</li>
* <li>item 3.0</li>
* <ol>
* <li>item 3.1</li>
* <li>item 3.2</li>
* </ol>
* <li>item 4.0</li>
* </ol>
*/
Tagged lists are always a more robust and predictable option for you to
use. Simple lists are convenient, but if you find yourself trying to bend
a simple list into displaying a certain way in your generated docs, you may
be better served by switching to a tagged list instead.
For in-depth information on how phpDocumentor parses the description
field, see ParserDescCleanup.inc
DocBlock TemplatesNew for version 1.2.0, phpDocumentor supports the use of DocBlock
templates. The purpose of a DocBlock template is to reduce redundant
typing. For instance, if a large number of class variables are private,
one would use a DocBlock template to mark them as private. DocBlock templates
simply augment any normal DocBlocks found in the template block.
A DocBlock template is distinguished from a normal DocBlock by its header.
Here is the most basic DocBlock template:
/**#@+
*
*/
The text that marks this as a DocBlock template is "/**#@+"
- all 6 characters must be present. DocBlock templates are applied to all
documentable elements until the ending template marker:
/**#@-*/
Note that all 8 characters must appear as "/**#@-*/" in order
for phpDocumentor to recognize them as a template. Here is an example of a
DocBlock template in action:
class Bob
{
// beginning of docblock template area
/**#@+
* @access private
* @var string
*/
var $_var1 = 'hello';
var $_var2 = 'my';
var $_var3 = 'name';
var $_var4 = 'is';
var $_var5 = 'Bob';
var $_var6 = 'and';
var $_var7 = 'I';
/**
* Two words
*/
var $_var8 = 'like strings';
/**#@-*/
var $publicvar = 'Lookee me!';
}
This example will parse as if it were:
class Bob
{
// beginning of docblock template area
/**
* @access private
* @var string
*/
var $_var1 = 'hello';
/**
* @access private
* @var string
*/
var $_var2 = 'my';
/**
* @access private
* @var string
*/
var $_var3 = 'name';
/**
* @access private
* @var string
*/
var $_var4 = 'is';
/**
* @access private
* @var string
*/
var $_var5 = 'Bob';
/**
* @access private
* @var string
*/
var $_var6 = 'and';
/**
* @access private
* @var string
*/
var $_var7 = 'I';
/**
* Two words
* @access private
* @var string
*/
var $_var8 = 'like strings';
var $publicvar = 'Lookee me!';
}
Note that for $_var8 the DocBlock template merged
with the DocBlock. The rules for merging are simple:
TagsTags are single words prefixed by a "@" symbol. Tags inform
phpDocumentor how to present information and modify display of documentation.
All tags are optional, but if you use a tag, they do have specific requirements
to parse properly.
A list of all possible tags in phpDocumentor follows:
/**
* The short description
*
* As many lines of extendend description as you want {@link element}
* links to an element
* {@link http://www.example.com Example hyperlink inline link} links to
* a website. The inline
* source tag displays function source code in the description:
* {@source }
*
* In addition, in version 1.2+ one can link to extended documentation like this
* documentation using {@tutorial phpDocumentor/phpDocumentor.howto.pkg}
* In a method/class var, {@inheritdoc may be used to copy documentation from}
* the parent method
* {@internal
* This paragraph explains very detailed information that will only
* be of use to advanced developers, and can contain
* {@link http://www.example.com Other inline links!} as well as text}}}
*
* Here are the tags:
*
* @abstract
* @access public or private
* @author author name <author@email>
* @copyright name date
* @deprecated description
* @deprec alias for deprecated
* @example /path/to/example
* @exception Javadoc-compatible, use as needed
* @global type $globalvarname
or
* @global type description of global variable usage in a function
* @ignore
* @internal private information for advanced developers only
* @param type [$varname] description
* @return type description
* @link URL
* @name procpagealias
or
* @name $globalvaralias
* @magic phpdoc.de compatibility
* @package package name
* @see name of another element that can be documented,
* produces a link to it in the documentation
* @since a version or a date
* @static
* @staticvar type description of static variable usage in a function
* @subpackage sub package name, groupings inside of a project
* @throws Javadoc-compatible, use as needed
* @todo phpdoc.de compatibility
* @var type a data type for a class variable
* @version version
*/
function if_there_is_an_inline_source_tag_this_must_be_a_function()
{
// ...
}
In addition, tutorials allow two addition inline tags: {@id}, used to
allow direct linking to sections in a tutorial, and {@toc}, used to generate
a table of contents from {@id}s in the file. Think of {@id} like an <a
name="idname"> HTML tag, it serves the same function.
See inline {@id} and inline {@toc} for
detailed information
In the example below, {@id} is used to name the refsect1 "mysection"
and the refsect2 "mysection.mysubsection" - note that the sub-sections inherit
the parent section's id.
<refentry id="{@id}">
<refsect1 id="{@id mysection}">
<refsect2 id="{@id mysubsection}">
</refsect2>
</refsect1>
</refentry>
For an in-depth look at phpDocumentor tags, read phpDocumentor tags,
and for an in-depth look at inline tags, read phpDocumentor Inline tags.
Documenting your PHP projectWhere to beginBefore you begin documenting your PHP project, you might want to try
a test run on your undocumented source code to see what kind of information
phpDocumentor will automatically extract from the source code. phpDocumentor
is designed to make the task of documenting minimally redundant. This means
less work, and better, up-to-date documentation with less effort than it used
to take.
phpDocumentor is a great tool, but it will not write good documentation
for you. Please read the phpDocumentor Guide to Creating Fantastic Documentation
Elements of the source code that can be documentedDividing projects into packagesTo understand the role of packages and how to use @package,
it is important to know the logic behind packaging in PHP. The quest for structured
programming led to the invention of functions, then classes, and finally packages.
Traditionally, a re-usable software module was a collection of variables, constants
and functions that could be used by another software package. PHP is an example of
this model, as their are many extensions that consist of constants and functions like
the tokenizer extension. One can think of the tokenizer extension as a package: it
is a complete set of data, variables and functions that can be used in other programs.
A more structured format of this model is of course objects, or classes. A class
contains variables and functions (but no constants in PHP). A single class packages
together related functions and variables to be re-used.
phpDocumentor defines package in two ways:
Functions, Constants and Global Variables are grouped into files
(by the filesystem), which are in turn grouped into packages using the @package
tag in a page-level DocBlock
Methods and Class Variables are grouped into classes (by PH),
which are in turn grouped into packages in a Class DocBlock
These two definitions of package are exclusive. In other words, it is possible
to have classes of a different package of the file that contains it! Here's an example:
It may be possible, but don't put classes into a different package from the
file they reside in, that will be very confusing and unnecessary. This behavior is
deprecated, in version 2.0, phpDocumentor will halt parsing upon this condition.
<?php
/**
* Pretend this is a file
*
* Page-level DocBlock is here because it is the first DocBlock
* in the file, and is immediately followed by the second
* DocBlock before any documentable element is declared
* (function, define, class, global variable, include)
* @package pagepackage
*/
/**
* Here is the class DocBlock
*
* The class package is different from the page package!
* @package classpackage
*/
class myclass
{
}
?>
For more information on page-level versus class-level packaging, see Procedural Elements
Perhaps the best way to organize packages is to put all procedural code
into separate files from classes. PEAR recommends
putting every class into a separate file. For small, utility classes, this may
not be the best solution for all cases, but it is still best to separate packages
into different files for consistency.
Advanced phpDocumentor: tutorials and extended DocumentationphpDocumentor developers have received a number of requests to allow linking
to external documentation, and to sections of that documentation. If phpDocumentor
only could create HTML documents, this would be a simple task, but the presence of
PDF and now XML converters as well as future possibilities complicates this question
tremendously. What is the solution?
Give phpDocumentor the ability to parse external documentation in a common format
and then convert it to the appropriate format for each converter. The implementation
of this solution in version 1.2.0 is very versatile. Making use of the standard DocBook
XML format, external documentation can be designed and then reformatted for any output.
No longer is external documentation tied down to one "look." Here's a short
list of the benefits of this approach:
Benefits of using DocBook as the format:
DocBook is very similar to HTML at the basic level and very
easy to learn.
Each template has its own options.ini file which determines
how the DocBook tags will be translated into the output language - no need
to learn xslt.
Adding in xslt support will be very easy to allow for future
customization
Benefits of integrating tutorials/external documentation into phpDocumentor:
Linking to external documentation from within API docs is possible
Linking to API docs from external documentation is also possible
Customizable table of contents, both of all tutorials and within
a tutorial via inline {@toc}
It is possible to create User-level documentation that has direct
access to Programmer-level documentation
User-level documentation generally consists of tutorials and information on how
to use a package, and avoids extreme detail. On the other hand, programmer-level
documentation has all the details a programmer needs to extend and modify a package.
phpDocumentor has been assisting the creation of programmer-level documentation since
its inception. With the addition of tutorials, it can now ease the creation of user-level
documentation.
For an in-depth look at how to use tutorials, read phpDocumentor Tutorials
Running phpDocumentorThere are two bundled ways of invoking phpDocumentor, the command-line phpdoc,
or the web interface phpdoc.php/new_phpdoc.php.
Using the new Web Interface docbuilderThe new web interface requires a working installation of PHP with a web server,
and must be accessible from the document root. Docbuilder is the creation of Andrew
Eddies, and it combines some slick formatting with the functionality of the old web
interface. The docbuilder interface can be accessed via index.html in the install
directory of phpDocumentor, or the docbuilder subdirectory.
In order to use the web interface, there are a number of factors that must
be set up before anything else can occur. First, you need a working web server
with php (it had to be said). This manual will not assist with that setup. Next,
the phpdoc.php or new_phpdoc.php file needs to be accessible by the webserver. In
unix, place a symbolic link using ln -s to the desired interface into the public
html directory.
Security is always an issue with the internet. Do not place phpDocumentor
into the web server publicly available path on a server connected to the internet.
Make sure that phpDocumentor will not have the power to overwrite ANY
system or user files.
Note that since the webserver runs as user nobody in unix, the generated files
will be owned by nobody. The only way to change this is to either run phpDocumentor
from the command-line or to add a chuser wrapper around httpd. We do not
recommend using a chuser wrapper or running phpDocumentor as root. It is
much easier and safer to use a config file (see phpDocumentor's dynamic User-defined config files)
from the command line.
Using the Command-line toolRunning the command-line in MS WindowsRunning phpDocumentor from the command-line is fairly straightforward, even in
windows. It is recommended to use the web interface in windows, from a non-publicly
accessible server root, as none of the permissions issues exist that exist in unix.
However, to use phpDocumentor from the command line is possible. First, put the
location of php into the system path, then type:
C:\>php-cli C:\path\to\phpdoc\phpdoc [commandline]
An alternative is to edit the phpdoc.bat file, and place phpdoc in the path,
then you can run phpdoc as a normal command.
Running the command-line in unixRunning the command-line tool phpdoc is very easy in unix:
.\phpdoc [commandline]
Command-line switches |
-cp |
--converterparams |
dynamic parameters for a converter, separate values with commas |
-ct |
--customtags |
comma-separated list of non-standard @tags to pass to the converter as valid tags |
-d |
--directory |
name of a directory(s) to parse directory1,directory2 |
-dc |
--defaultcategoryname |
name to use for the default category. If not specified, uses 'default' |
-dh |
--hidden |
set equal to on (-dh on) to descend into hidden directories (directories
starting with '.'), default is off |
-dn |
--defaultpackagename |
name to use for the default package. If not specified, uses 'default' |
-ed |
--examplesdir |
full path of the directory to look for example files from @example tags |
-f |
--filename |
name of file(s) to parse ',' file1,file2. Can contain complete path and * ? wildcards |
-i |
--ignore |
file(s) that will be ignored, multiple separated by ','. Wildcards * and ? are ok |
-is |
--ignoresymlinks |
Explicitly ignore symlinks, both symlinked directories and symlinked files.
Valid options are "on" and "offn" default value is "off" |
-it |
--ignore-tags |
tags to ignore for this parse. @package, @subpackage, @access and @ignore may not be ignored. |
-j |
--javadocdesc |
use JavaDoc-compliant description (short desc is part of description, and is everything up to first .) |
-o |
--output |
output information, format:converter:template (HTML:frames:phpedit for example) |
-p |
--pear |
Parse a PEAR-style repository (package is directory, _members are @access private) on/off default off |
-po |
--packageoutput |
output documentation only for selected packages. Use a comma-delimited list |
-pp |
--parseprivate |
parse elements marked private with @access. Valid options are "on"
and "off" default value is "off" |
-q |
--quiet |
do not display parsing/conversion messages. Useful for cron jobs. Valid options are "on"
and "off" default value is "off" |
-ric |
--readmeinstallchangelog |
Specify custom filenames to parse like README, INSTALL or CHANGELOG files |
-s |
--sourcecode |
generate highlighted sourcecode for every parsed file (PHP 4.3.0+ only) on/off default off |
-t |
--target |
path where to save the generated files |
-ti |
--title |
title of generated documentation, default is 'Generated Documentation' |
-tb |
--templatebase |
base location of all templates for this parse. Note that if -tb /path/to/here, then
templates for HTML:frames:default must be in /path/to/here/Converters/HTML/frames/templates/default/templates
and the /path/to/here/Converters/HTML/frames/templates/default/templates_c directory must
exist, or Smarty will bail on attempting to compile the templates. |
-ue |
--undocumentedelements |
Enable warnings for undocumented elements. Useful for identifying classes and methods that haven't yet been documented.
Valid options are "on" and "offn" default value is "off" |
-c, --configUse this option to load a config file (see phpDocumentor's dynamic User-defined config files)
"phpdoc -c default" will load the default.ini file
-cp, --converterparamsThis option is only used to pass dynamic parameters to extended converters. The options
passed should be separated by commas, and are placed in the global variable
$_phpDocumentor_setting['converterparams'], an array. It is the
responsibility of the Converter to access this variable, the code included with phpDocumentor
does nothing with it.
-ct, --customtagsUse this option to specify tags that should be included in the list of valid tags for
the current run of phpdoc
"phpdoc -ct mytag,anothertag" will tell phpDocumentor to parse this DocBlock:
/**
* @mytag this is my tag
* @anothertag this is another tag
*/
without raising any errors, and include the tags in the known tags list for the
template to handle. Note that in version 1.2.0+, the unknown_tags array is passed to templates.
-dh, --hiddenUse this option to tell phpDocumentor to parse files and directories that begin with a period (.)
-dc, --defaultcategorynameThis will tell phpDocumentor to group any uncategorized elements into the primary
categoryname. If not specified, the primary category is "default." The
category should be specified using the @category tag.
/**
* This package has no category and will be grouped into the default
* category unless -dc categoryname is used
* @package mypackage
*/
class nocategory
{
}
-dn, --defaultpackagenameUse this option to tell phpDocumentor what the primary package's name is. This will also tell phpDocumentor to group any unpackaged elements into the primary packagename. If not specified, the primary package is "default"
/**
* This class has no package and will be grouped into the default
* package unless -dn packagename is used
*/
class nopackage
{
}
-d, --directoryThis or the -f option must be present, either on the command-line or in the config file.
Unlike -f, -d does not accept wildcards. Use -d to specify full paths or relative paths to the current directory that phpDocumentor should recursively search for documentable files. phpDocumentor will search through all subdirectories of any directory in the command-line list for tutorials/ and any files that have valid .php extensions as defined in phpDocumentor.ini. For example:
"phpdoc -d relative/path/to/dir1,/fullpath/to/here,.."
-ed, --examplesdirThe -ed option is used to specify the full path to a directory that example files are located in. This command-line setting affects the output of the @example tag.
"phpdoc -ed /fullpath/to/examples"
-f, --filenameThis or the -d option must be present, either on the command-line or in the config file.
This option is used to specify individual files or expressions with wildcards * and ?. Use * to match any string, and ? to match any single character.
phpdoc -f m*.p* will match myfile.php, mary_who.isthat.phtml, etc.
phpdoc -f /path/m* will match /path/my/files/here.php, /path/mommy.php /path/mucho/grande/what.doc, etc.
phpdoc -f file?.php will match file1.php, file2.php and will not match file10.php
-i, --ignoreUse the -i option to exclude files and directories from parsing. The -i option recognizes the * and ? wildcards, like -f does. In addition, it is possible to ignore a subdirectory of any directory using "dirname/".
phpdoc -i tests/ will ignore /path/to/here/tests/* and /path/tests/*
phpdoc -i *.inc will ignore all .inc files
phpdoc -i *path/to/* will ignore /path/path/to/my/* as well as /path/to/*
phpdoc -i *test* will ignore /path/tests/* and /path/here/my_test.php
Since v1.3.2, the value or pattern you provide will be case-sensitive (OS permitting, anyway), and will be applied relative to the top-level directory in the -d argument.
phpdoc -i CVS/ will ignore /path/to/CVS/* but will not ignore /path/to/cvs
phpdoc -d /home/myhome/cvs/myproject -i cvs/ will ignore /home/myhome/cvs/myproject/files/cvs/* but will not ignore /home/myhome/cvs/*
-is, --ignoresymlinksUse the -is option to explicitly ignore any symlinks, whether they be links to directories or links to files.
This only works on a Unix/Linux environment, since Windows doesn't have symlinks.
-it, --ignore-tagsUse the -it option to exclude specific tags from output. This is used for creating multiple sets of documentation for different audiences. For instance, to generate documentation for end-users, it may not be desired to output all @todo tags, so --ignore-tags @todo would be used. To ignore inline tags, surround them with brackets {} like --ignore-tags {@internal}.
--ignore-tags will not ignore the core tags @global, @access, @package, @ignore, @name, @param, @return, @staticvar or @var.
The --ignore-tags option requires a full tag name like --ignore-tags @todo. --ignore-tags todo will not work.
-j, --javadocdescUse this command-line option to enforce strict compliance with JavaDoc. JavaDoc DocBlocks are much less flexible than phpDocumentor's DocBlocks (see DocBlocks for information).
-o, --outputUse this required option to tell phpDocumentor which Converters and templates to use. In this release, there are several choices:
HTML:frames:* - output is HTML with frames.
HTML:frames:default - JavaDoc-like template, very plain, minimal formatting
HTML:frames:earthli - BEAUTIFUL template written by Marco von Ballmoos
HTML:frames:l0l33t - Stylish template
HTML:frames:phpdoc.de - Similar to phpdoc.de's PHPDoc output
HTML:frames:phphtmllib - Very nice user-contributed template
all of the templates listed above are also available with javascripted expandable indexes, as HTML:frames:DOM/name where name is default, l0l33t, phpdoc.de, etcetera
HTML:frames:phpedit - Based on output from PHPEdit Help Generator
HTML:Smarty:* - output is HTML with no frames.
HTML:Smarty:default - Bold template design using css to control layout
HTML:Smarty:HandS - Layout is based on PHP, but more refined, with logo image
HTML:Smarty:PHP - Layout is identical to the PHP website
CHM:default:* - output is CHM, compiled help file format (Windows help).
PDF:default:* - output is PDF, Adobe Acrobat format
XML:DocBook:* - output is XML, in DocBook format
In 1.2.0+, it is possible to generate output for several converters and/or templates at once. Simply specify a comma-delimited list of output:converter:template like:
phpdoc -o HTML:frames:default,HTML:Smarty:PHP,HTML:frames:phpedit,PDF:default:default -t ./docs -d .
-pp, --parseprivateBy default, phpDocumentor does not create documentation for any elements marked @access private. This allows creation of end-user API docs that filter out low-level information that will not be useful to most developers using your code. To create complete documentation of all elements, use this command-line option to turn on parsing of elements marked private with @access private.
-po, --packageoutputUse this option to remove all elements grouped by @package tags in a comma-delimited list from output. This option is useful for projects that are not organized into separate files for each package. Parsing speed is not affected by this option, use -i, --ignore whenever possible instead of --packageoutput.
phpdoc -o HTML:frames:default -t ./docs -d . -po mypackage,thatotherpackage will only display documentation for elements marked with "@package mypackage" or "@package thatotherpackage"
-p, --pearUse this option to parse a PEAR-style repository. phpDocumentor will do several "smart" things to make life easier:
PEAR-style destructors are automatically parsed
If no @package tag is present in a file or class DocBlock, it will guess the package based on subdirectory
If a variable or method name begins with "_", it will be assumed to be @access private, unless an @access tag is present. Constructors are also assumed to be @access private in the current version.
Warnings will be raised for every case above, as @package should always be explicit, as should @access private. We do not like to assume that phpDocumentor knows better than you what to do with your code, and so will always require explicit usage or raise warnings if phpDocumentor does make any assumptions.
-q, --quietThis option tells phpDocumentor to suppress output of parsing/conversion information to the console. Use this for cron jobs or other situations where human intervention will not be needed.
-ric, --readmeinstallchangelogThis comma-separated list of files specifies files that should be parsed and included in the
documentation. phpDocumentor will automatically grab files listed here if and only if they are located
in the top-level directory that is parsed. In other words, if you parse these files:
- /path/to/files/file1.php
- /path/to/files/file2.php
- /path/to/files/README
- /path/to/files/subdir/file2.php
- /path/to/files/subdir/README
The only README file that will be grabbed is /path/to/files/README, and not /path/to/files/subdir/REAMDE,
because the directory that is closest to the root directory that contains a parsed file is /path/to/files.
The default list of files is located in phpDocumentor.ini, which is found in the root installation directory
of phpDocumentor.
-s, --sourcecodeThis option tells phpDocumentor to generate highlighted cross-referenced source code for every file parsed. The highlighting code is somewhat unstable, so use this option at your own risk.
-t, --targetUse this to tell phpDocumentor where to put generated documentation. Legal values are paths that phpDocumentor will have write access and directory creation priveleges.
-tb, --templatebase-tb accepts a single pathname as its parameter. The default value of -tb if unspecified is <phpDocumentor install directory>/phpDocumentor. This raises a very important point to understand. The -tb command-line is designed to tell phpDocumentor to look for all templates for all converters in subdirectories of the path specified. By default, templates are located in a special subdirectory structure.
For the hypothetical outputformat:convertername:templatename -o, --output argument, the directory structure is Converters/outputformat/convertname/templates/templatename/. The class file for convertname should be in the convertname/templates directly, right beside your templatename directory/ies. In addition, Smarty expects to find two subdirectories, templates/ (containing the Smarty template files) and templates_c/ (which will contain the compiled template files).
"phpdoc -tb ~/phpdoctemplates -o HTML:frames:default" will only work if the directory ~/phpdoctemplates/Converters/HTML/frames/default/templates contains all the template files, and ~/phpdoctemplates/Converters/HTML/frames/default/templates_c exists.
-ti, --titleSet the global title of the generated documentation
-ue, --undocumentedelementsThis option tells phpDocumentor whether or not to suppress warnings about certain objects (classes, methods) that are not documented via a DocBlock comment. Use this to help identify objects that you still need to write documentation for.
phpDocumentor's dynamic User-defined config filesThe new -c, --config command-line options heralds a new era of ease in using phpDocumentor. What used to require:
phpdoc -t /path/to/output -d path/to/directory1,/another/path,/third/path\
-f /path/to/anotherfile.php -i *test.php,tests/ -pp on -ti My Title -o HTML:frames:phpedit
Can now be done in a single stroke!
phpdoc -c myconfig
What makes this all possible is the use of config files that contain all of the command-line information. There are two configuration files included in the distribution of phpDocumentor, and both are in the user/ subdirectory. To use a configuration file "myconfig.ini," simply place it in the user directory, and the command-line "phpdoc -c myconfig" will tell phpDocumentor to read all the command-line settings from that config file. Configuration files may also be placed in another directory, just specify the full path to the configuration file:
phpdoc -c /full/path/to/myconfig.ini
The best way to ensure your config file matches the format expected by phpDocumentor is to copy the default.ini config file, and modify it to match your needs. Lines that begin with a semi-colon (;) are ignored, and can be used for comments.
Be sure to put in your config file all the runtime options you need, because all other command-line arguments are ignored if you use a config file.
phpDocumentor.ini - global configuration optionsThe phpDocumentor.ini file contains several useful options, most of which will never need to be changed. However, some are useful. The section [_phpDocumentor_options] contains several configuration settings that may be changed to enhance output documentation. For Program Location, the relative path is specified as Program_Root/relativepath/to/file. The prefix "Program_Root" may be changed to any text, including none at all, or "Include ", etc. The [_phpDocumentor_setting] section can be used to specify a config file that should be used by default, so phpDocumentor may be run without any command-line arguments whatsoever! The [_phpDocumentor_phpfile_exts] section tells phpDocumentor which file extensions are php files, add any non-standard extensions, such as "class" to this section.
Prev |
Up |
Next |
Source code for sample3.php |
phpDocumentor Guide to Creating Fantastic Documentation |
Documentable PHP Elements |
|
|