how can i print the array of all defined functions ?
sometimes a very complex php include many other files , and it has many common functions ,such as zencart pages , I want to find all functions of the page ,how to do?
<?php
function hello(){}
function world(){}
// how to print all user defined functions?
array(
[0] => hello
[1] => world
)