I wonder if possible to execute (run,call,activate..) the function, after when php detects that :
1) $something varialbe is being defined
or
2) something other function is executed. See example:
function sayy()
{
echo "Hiiiiiii";
}
RUN FUNCTION when $VARIALBE will be set;
......
......
......
......
......
......
include('blablabla.php');
//i dont have access to blablabla.php,and there is code:
$VARIALBE = 'Jake';
!!!!!!!!!THEN I WANT EXECUTE MY FUNCTION HERE!!!!!!!!!!!