July 18, 2009

Total number of php built-in functions

Hi all, you know that the total number of php built-in functions available is 1263

get_defined_functions() will return the built-in function list in php

To view those function list just execute the following code and have a look on yours

<?php

$functions_list = get_defined_functions();

$i = 1;
foreach($functions_list['internal'] as $function_name) {
echo $i . “. ” . $function_name . “<br/>”;
$i++;
}

?>