suppose i have the following code
function some_function($ data)
{
// do something with data
}
$test = 'some_value';
some_function($ test);
is there any way to access the var name '$test' from within the
function, i. e. can $data find out that $test is it's "parent"?
tia, micha
function some_function($ data)
{
// do something with data
}
$test = 'some_value';
some_function($ test);
is there any way to access the var name '$test' from within the
function, i. e. can $data find out that $test is it's "parent"?
tia, micha
Comment