downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

dns_check_record> <closelog
[edit] Last updated: Tue, 21 May 2013

view this page in

define_syslog_variables

(PHP 4, PHP 5 < 5.4.0)

define_syslog_variablesInizializza tutte le costanti collegate al syslog

Descrizione

void define_syslog_variables ( void )

Inizializza tutte le costanti usate nelle funzioni del syslog.

Vedere anche openlog(), syslog() e closelog().



add a note add a note User Contributed Notes define_syslog_variables - [1 notes]
up
1
chad 0x40 herballure 0x2e com
5 years ago
define_syslog_variables() only defines global variables. Constants are already always defined, if the syslog module is loaded. You _do not_ need to call this to use the syslog constants.

For instance, on my system:
<?php
var_dump
(LOG_ERR); // int(3)
var_dump($LOG_ERR); // NULL (and an E_NOTICE)
define_syslog_variables();
var_dump($LOG_ERR); // int(3)
?>

 
show source | credits | sitemap | contact | advertising | mirror sites