function print_string($s)
{
echo "string: $s";
echo "<pre>";
var_dump(debug_backtrace());
echo "</pre>";
}
print_string('The quick fox jumps over the lazy dog');
/*
run:
string: The quick fox jumps over the lazy dog
array(1) {
[0]=>
array(4) {
["file"]=>
string(36) "C:\xampp\htdocs\knowrex.com\test.php"
["line"]=>
int(17)
["function"]=>
string(12) "print_string"
["args"]=>
array(1) {
[0]=>
&string(38) "The quick fox jumps over the lazy dog"
}
}
}
*/