PHP/Utility Function/exit

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

void exit ( [mixed status] ) terminates execution of a script, and is an alias of the exit( ) function.

 
$db = open_database( ) OR die("Couldn"t open database!");



void exit ( [mixed status] ) terminates execution of the script

 
if ($password != "frosties") {
            print "Access denied.";
            exit( ); // note: ( ) is optional
    }