This is a discussion on Php document generator from phpDoc style within the alt.comp.lang.php forums, part of the PHP Programming Forums category; Anyone knows of a good and easy program or script which generates doc file from a phpdoc style comments???? PhpEdit ...
|
|||||||
| FAQ | Members List | Calendar | Search | Today's Posts | Mark Forums Read |
|
|||
|
point <point@caanNOSPAMproduction.com> wrote:
> Anyone knows of a good and easy program or script which generates doc file > from a phpdoc style comments???? http://www.google.com/search?q=phpdoc JOn |
|
|||
|
I (obviously) know about PHPDoc but I know there are some other progs out
there which create .html file from PHPDoc-ed class..... But thanx anyway.... "Jon Kraft" <jon@jonux.co.uk> wrote in message news:bjq2bb$kt4sm$2@ID-175424.news.uni-berlin.de... > point <point@caanNOSPAMproduction.com> wrote: > > > Anyone knows of a good and easy program or script which generates doc file > > from a phpdoc style comments???? > > http://www.google.com/search?q=phpdoc > > JOn |
|
|||
|
point wrote on Thursday 11 September 2003 07:07:
> Anyone knows of a good and easy program or script which generates doc file > from a phpdoc style comments???? > > PhpEdit has something like that but I need a standalone one... > > respect.... Try the one that I recently created - ActiveLink PHP DOC Package: - go to http://www.active-link.com/intranet/software.php - download DOC package and unzip it in the PHP-accessible directory - view online documentation (actually generated by the same package) - create and run following script to view documentation in the browser: <?php // import class loading function require_once("classes/iorca/include.php"); // load required classes import("org.active-link.doc.PHPClass"); import("org.active-link.doc.DocHTML"); // parse class comments from file $myClass = new PHPClass(); $success = $myClass->parseFromFile("YourClassHere.php"); // generate and print HTML documentation $myDoc = new DocHTML(); $o = $myDoc->getClassDoc($myClass); print($o); ?> Obviously, substitute "YourClassHere.php" with the PHP file you are generating the documentation for. Good luck! -- Business Web Solutions ActiveLink, LLC www.active-link.com/intranet/ |
|
|||
|
Zurab Davitiani wrote on Thursday 11 September 2003 12:40:
> require_once("classes/iorca/include.php"); Oops! The above line should read: require_once("classes/include.php"); assuming this PHP script is in the same directory where the downloaded package was unzipped. -- Business Web Solutions ActiveLink, LLC www.active-link.com/intranet/ |
|
|||
|
Hi there,
> Anyone knows of a good and easy program or script which generates doc file > from a phpdoc style comments???? > > PhpEdit has something like that but I need a standalone one... What about www.phpdoc.org ? Kind regards. Karl Heinz -- Dipl.Ing.(FH) Karl Heinz Marbaise | Minkenberg Medien GmbH Projektleiter / Projectmanager | www.minkenberg-medien.de Tel.: +49 (2452) 98 91 40 | Roermonderstr. 128a Fax.: +49 (2452) 98 91 42 | D-52525 Heinsberg |
|
|||
|
Thanx guys.......
respect.... "Karl-Heinz Marbaise" <karl-heinz@minkenberg-medien.de> wrote in message news:bjrp86$m8g33$1@ID-68093.news.uni-berlin.de... > Hi there, > > Anyone knows of a good and easy program or script which generates doc file > > from a phpdoc style comments???? > > > > PhpEdit has something like that but I need a standalone one... > What about www.phpdoc.org ? > > Kind regards. > > Karl Heinz > > -- > Dipl.Ing.(FH) Karl Heinz Marbaise | Minkenberg Medien GmbH > Projektleiter / Projectmanager | www.minkenberg-medien.de > Tel.: +49 (2452) 98 91 40 | Roermonderstr. 128a > Fax.: +49 (2452) 98 91 42 | D-52525 Heinsberg > |
|
|||
|
point wrote:
> Anyone knows of a good and easy program or script which generates doc file > from a phpdoc style comments???? > > PhpEdit has something like that but I need a standalone one... > > respect.... > > > doxygen |
![]() |
| Thread Tools | |
| Display Modes | |
|
|