define_syslog_variables

(PHP 4, PHP 5)

define_syslog_variables — Initializes all syslog related constants

Описание

void define_syslog_variables ( void )

Initializes all constants used in the syslog functions.

Возвращаемые значения

Эта функция не возвращает значения после выполнения.

Смотрите также

Коментарии

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)
?>
2007-07-24 15:47:46
http://php5.kiev.ua/manual/ru/function.define-syslog-variables.html

    Поддержать сайт на родительском проекте КГБ