PHP/File Directory/ LINE

Материал из Web эксперт
Версия от 07:04, 26 мая 2010; Admin (обсуждение | вклад) (1 версия)
(разн.) ← Предыдущая | Текущая версия (разн.) | Следующая → (разн.)
Перейти к: навигация, поиск

Echoing the line and file predefined constants

 
<?php
echo "Executing line " . __LINE__ . " of PHP script " . __FILE__ . ".";
?>



Using __FILE__ and __LINE__

 
<?php
    function report_error($file, $line, $message) {
        echo "An error occured in $file on line $line: $message.";
    }
    report_error(__FILE__,__LINE__, "Something went wrong!");
?>