if you are inside of a function how do you tell what line that function was called on in the main script?
for example
<?php function test(){ print("the test() function was called from line xxx"); } test() ?>