Pelajaran Syntax PHP set_exception_handler & Error_log
BAB set_exception_handler()
Berfungsi untuk exception selama program berjalan
Syntax Dasar;
set_exception_handler(exception_function)
Contohnya:
Befungsi untuk mengirimkan catatan kesalahan (error) ke server atau tujuan lainnya., Syntax dasar;
error_log(error,type,destination,headers)
Contohnya:
Berfungsi untuk memfilter variable dengan spesifikasi filter tertentu.
Syntax Dasar
filter_var(variable,filter,option)
Contohnya;
BAB filter_input()
Berfungsi sebagai validasu variable yang bersumber dari beberapa sumber, seperti unsur input, cookie dan session.
Syntax Dasar;
filter_input(input,variable,filter,option)
Contohnya;
BAB set_exception_handler()
Berfungsi untuk exception selama program berjalan
Syntax Dasar;
set_exception_handler(exception_function)
Contohnya:
<?phpBAB error_log()
function myException($exception)
{
echo "<b>Exception:</b>" , $exception-> getMessage();
}
set_exception_handler('myException');
throw new Exception('Uncaught Exception occurred');
?>
Befungsi untuk mengirimkan catatan kesalahan (error) ke server atau tujuan lainnya., Syntax dasar;
error_log(error,type,destination,headers)
Contohnya:
<?phpBAB filter_var()
$test=2;
if ($test>1) { error_log("error log",1,"asiankonsultasionline@yahoo.com",from:sutimahprogrammer@gmail.com"); }
?>
Berfungsi untuk memfilter variable dengan spesifikasi filter tertentu.
Syntax Dasar
filter_var(variable,filter,option)
Contohnya;
<?php
if(!filter_var("asiankonsultasionline@yahoo.com",FILTER_VALIDATE_EMAIL)) {echo ("alamat e-mail tidak valid"); }
}
else { echo("Alamat e-mail Valid"); }
?>
BAB filter_input()
Berfungsi sebagai validasu variable yang bersumber dari beberapa sumber, seperti unsur input, cookie dan session.
Syntax Dasar;
filter_input(input,variable,filter,option)
Contohnya;
<?php===================================================================
if (!filter_input(INPUT_POST, 'email',FILTER_VALIDATE_EMAIL))
{
echo ("Alamat e-mail tidak valid");
}
else
{
echo ("Alamat e-mail Valid");
}
?>
0 Response to "Pelajaran Syntax PHP set_exception_handler & Error_log"
Posting Komentar