Possible Duplicate:
Use a variable to define a PHP function
Is there a way of using a variable as a function name.
For example i have a variable
$varibaleA;
and I want to create a function i.e.
function $variableA() {
}
so this function can be called later in the script. Does anyone know if this can be done?
Thanks