Thanks ArkM,
I've had a glance at Doxygen. Seems intersting. But, I think i'll study PHPDoc some more first because it's writen with PHP.
There are a good list of links to other documentaion systems at the page you've mentioned. Maybe I find something there too.
DRJ478
I havn't done any benchmarking to compare strpos() and preg_match() myself. And I don't know exactly how the (quite sofisticated) matching machinery is coded.
But, simply speaking, because preg_match() is made to handle such a variety of patterns (see...
I would recommend the use of strpos() (see example at http://se2.php.net/manual/en/function.strpos.php) because strpos() does not involve the overhead that preg_match() do.
You should try to avoid the use of regular expression functions if you don't need fancy rules.
Hi!
As my experience with PHP has increased I recently started to search for some kind of system to help documentation of my code. Does anyone have a good tip concerning what system to use?
I've had a glance at PHPDoc http://www.phpdoc.de/index.html and read a description of the DDDA...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.