[PHP] viewing php predefined fucntions

2002-07-01 Thread Anil Garg

Hi,
at this link:
http://www.php.net/manual/en/funcref.php
i can see the categories of the available functions, But
How can i see all the fucnctions in php together (in one screen)?
Is there a way to do that.
Thank You
anil


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php




Re: [PHP] viewing php predefined fucntions

2002-07-01 Thread Jim lucas

here is a quicky that I wrote up to do just that

?php
$ext = get_loaded_extensions();

foreach($ext AS $module_name)
  $functions[$module_name] = get_extension_funcs($module_name);

print_r($functions); //  This is the returned array from above
?

Jim Lucas
- Original Message - 
From: Anil Garg [EMAIL PROTECTED]
To: [EMAIL PROTECTED]
Sent: Monday, July 01, 2002 10:52 AM
Subject: [PHP] viewing php predefined fucntions


 Hi,
 at this link:
 http://www.php.net/manual/en/funcref.php
 i can see the categories of the available functions, But
 How can i see all the fucnctions in php together (in one screen)?
 Is there a way to do that.
 Thank You
 anil
 
 
 -- 
 PHP General Mailing List (http://www.php.net/)
 To unsubscribe, visit: http://www.php.net/unsub.php
 
 


-- 
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php