Hello All,
Is there any way to call the mother function?
I mean
expected out put is
is there anything like that?
Please let me know
Is there any way to call the mother function?
I mean
Code:
<?php
function a()
{
b();
}
function b()
{
echo __MOTHER_FUNCTION__;
}
?>
Code:
a()
Please let me know
Comment