Is it possible to store the address or reference to a function in php? Maybe
using just a string and later dereferencing it?
e.g some ideas to illustrate what I mean
<?php
function myCompanyMotto( ){
echo "hello";
}
$myarr["func1"]=&myCompanyMott o;
$myarr["func2"]="myCompanyMott o";
//how to get function from myarr and call it????
?>
--
Comment