phpDocumentor を使い始めようとしています。私の問題は、img、css、js フォルダーと structure.xml ファイルのみを生成することです。
私は現在、クラスといくつかのdocBloxコメントを含む1つのファイルindex.phpでphpTestと呼ばれるc:/ xampp/htdocsにフォルダーを作成しました
pear とコマンド プロンプトを使用して phpDocumentor をインストールしました
だから私は現在cmdを実行しています
入力 cd c:/xampp/htdocs/phptest
phpDocs -dc:/xampp/htdocs/phptest -tc:/xampp/htdocs/phptest/docs
docs フォルダーの唯一の出力は、3 つのフォルダーと structure.xml ファイルです。参照できるすべてのドキュメントを含む index.hmtl ファイルが必要ですか? どうすれば表示されるようになりますか? ありがとうこれは私のテストindex.phpファイルで、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);
}
?>