Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

closelog

Description

The closelog of Network for PHP close connection to system logger.

Syntax

closelog(): true

Return

Always returns true.

Examples

1 · void

<?

$prefix = "myprefix";
$flags = LOG_PID | LOG_PERROR;
$facility = LOG_USER;

openlog($prefix, $flags, $facility);

$return = closelog();

var_export($return);

?>
true
HomeMenu