Hi, does any one know how many built in functions are there in PHP (latest version)?
Thanks
Count them here: http://php.net/quickref.php
http://php.net/quickref.php shows a total of 5368 functions.
Six. Definitely Six.
You could use a core function to count the number of functions available in the core and installed extensions:
$funcs = get_defined_functions(); echo count($funcs['internal']);