PHP/Language Basics/Pre Defined Constant — различия между версиями
Admin (обсуждение | вклад) м (1 версия) |
|
(нет различий)
|
Версия 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__;
?>