I just finished a huge program and wish to document it.
What is the best Documentation program for php, please advice
Regards
Mian
What is the best PHP documentation program?
Moderator: General Moderators
phpdocumentor is what I use. Very neat, Java-style documentation. It takes a couple of tries before you've sussed it really out, but after that it's a piece of cake.
- CoderGoblin
- DevNet Resident
- Posts: 1425
- Joined: Tue Mar 16, 2004 10:03 am
- Location: Aachen, Germany
-
malcolmboston
- DevNet Resident
- Posts: 1826
- Joined: Tue Nov 18, 2003 1:09 pm
- Location: Middlesbrough, UK
read the manual 
You need to abide by their commenting style so it can be parsed, otherwise not much happens.
You need to abide by their commenting style so it can be parsed, otherwise not much happens.
Code: Select all
/**
* @package User
* @version $Id: class_subscription.inc.php,v 0.1 17.03.2005 PatrikG Exp $
*/
/**
* Subscription Class
* @access public
* @package User
*/
class subscription{
/**
* user constructor
* @access public
* @param int $id user-id
* @param int $name name of user
* @return bool $login User is a subscriber?
*/
function subscription($id,$name){
$this->name = $name;
$this->id = $id;
...
return $this->login;
}php manuel
Php manuel answers all your questions 
- Buddha443556
- Forum Regular
- Posts: 873
- Joined: Fri Mar 19, 2004 1:51 pm