我试图使用 phpDocumentor 启动。 我的问题是它唯一能生成 Ing, cs, js 文件夹和结构. xml 文件 。
I have currently created a folder in c:/xampp/htdocs called phpTest with 1 file index.php with a class and some docBlox comments
我用梨子和命令提示安装了phpDocument器
因此,我目前运行 cmd
cd c: /xampp/htdocs/phptest
phpDocs - d c:/xampp/htdocs/phptest - tc:/xampp/htdocs/phptest/docs :/xampp/htdocs/phptest/docs
and the only output in the docs folder is the 3 folders and structure.xml file. Should there be an index.hmtl file with all the documentation available for me to see? How do i get it to show up? Thanks This is my test index.php File im trying to document with phpDocumentor.
<?php
/**
* File level docBlock
*@package Command
*/
/**
*This is the command class it is incharge
*Only has execute method
*@package Command
*@author Michael Booth
*@copyright 2012 bla bla
*/
abstract class Command{
/**
*keeps keys values
*@var array
*/
public var $arrayvar = array();
/**
*executes method
*@param $int contains contextual data
*@return bool
*/
abstract function execute($integer);
}
?>