PHP
De JarfilWiki
Contenido |
Related
PHP Debugging
- Los mejores IDEs para Php - 12/09/2007
- Google: php debugging
- DBG - PHP Debugger and Profiler
- IBM - Debugging techniques for PHP programmers - 29 Nov 2005
- XDEBUG EXTENSION FOR PHP
PHP 5.3
PHP Frameworks
Editors
20061231-122300
- PHP Designer 2007 - Professional
- 41€
- PHP Edit
- 89€
- Xored::WebStudio (Eclipse) TruStudio
- 0€
Tools
- Eclipse PHP Development Tools (gpl)
- Zend Server (free)
- NuSphere PhpED (buy)
- php editors (forum) - http://www.php-editors.com/forums/latest-news/5898-php-ide-phped-5-5-powerful-php-html-editing-tools-now-shipping.html
- http://www.php-editors.com/php-tools/php-debugger.php - php debugger
Snippets
Call method by variable:
<?php class c { function a() { echo "a\n"; } } $o = new c(); $p = 'a'; $o->$p(); ?>
Call method by argv:
<?php echo 'argc: '.$_SERVER['argc']."\n"; print_r($_SERVER['argv']); $c = new c; $do=$argv[1]; $c->$do("tst"); class c { function a($t) { echo $t; } } ?>
