PHP/Language Basics/Pre Defined Constant
Версия от 10:37, 26 мая 2010; (обсуждение)
__FILE__: The name of the script file being parsed
<?
echo "<br>This file is ".__FILE__;
?>
__LINE__: The number of the line in the script being parsed
<?
echo "<br>This is line number ".__LINE__;
?>