On Sat, 28 Oct 2006, Peter Hodge wrote: > Hello everyone, > > I am in the process of updating the PHP syntax file for Vim, and I need to > gather a list of all built-in PHP functions, constants, classes, interfaces, > and preferably also the methods and class-constants from said built-in classes > and interfaces. > > First I used my PHP's get_defined_functios() and similar classes to havest my > list, but this misses out on any extensions I don't have compiled.
The following suffers from the same problems, but also shows constants, ini settings, classes etc: for i in `php -r 'foreach(get_loaded_extensions() as $ext) { echo "$ext "; }';`; do php --re $i; done regards, Derick -- Derick Rethans http://derickrethans.nl | http://ez.no | http://xdebug.org -- PHP Internals - PHP Runtime Development Mailing List To unsubscribe, visit: http://www.php.net/unsub.php