Php document generator from phpDoc style

  • Follow


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....



0
Reply point5404 (24) 9/11/2003 2:07:23 PM

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
0
Reply jon1117 (163) 9/11/2003 2:54:22 PM


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/
0
Reply agt1 (138) 9/11/2003 7:40:44 PM

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

0
Reply karl-heinz (4) 9/12/2003 6:31:34 AM

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
>


0
Reply point5404 (24) 9/12/2003 6:49:41 AM

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

0
Reply ja658 (11) 9/14/2003 7:11:14 PM

5 Replies
32 Views

(page loaded in 0.126 seconds)

Similiar Articles:






7/15/2012 2:00:50 PM


Reply: