PHP/Language Basics/Pre Defined Constant — различия между версиями

Материал из Web эксперт
Перейти к: навигация, поиск
м (1 версия)
 
(нет различий)

Текущая версия на 07:05, 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__;
?>