Jump to content

__FILE__ and __LINE__


Liquid Fire

Recommended Posts

I want to get create a function the will print out the line a file that the function is called without having to pass it to them.  for example this:

<?php
function test($file = __FILE__, $line = __LINE__)
{
echo $file . '|' . $line;
}

test();
?>

will print the right file but line 2.  is there a way to get the line/file the function is being called from automatically without worrying about having to pass it every time I call the function?

Link to comment
https://forums.phpfreaks.com/topic/90153-__file__-and-__line__/
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.