/ Published in: PHP
URL: http://fr.php.net/error_log
Expand |
Embed | Plain Text
error_log() error_log examples <?php // Envoi une notification par l'historique du serveur web, // si la connexion à la base de données est impossible. if (!Ora_Logon($username, $password)) { } // Indiquer à l'administrateur, par email, qu'il n'y a plus de FOO if (!($foo = allocate_new_foo())) { "operateur@example.com"); } // D'autres manières d'appeler error_log(): ?>
Comments
Subscribe to comments
You need to login to post a comment.

@error_log($log."\n", 3, "logmsg.txt");
@error_log($log."\n", 3, "logmsg.txt");
error_log examples