Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations biv343 on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. m98marba

    Tip for documentation machinery?

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

    how do I check a string for white space in php?

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

    how do I check a string for white space in php?

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

    Tip for documentation machinery?

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

Part and Inventory Search

Back
Top