<?php
function funct_one(){
//do something
}
function funct_two(){
//do something
}
function funct_three(){
//do something
}
function funct_four(){
//do something
}
$func_list=array();
?>
thats an example code
i want a list of all functions, something like this,
$func_list=array('funct_one','funct_two','funct_three','funct_four');
i want this array to generated itself on load .