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

closelog

Description

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

Syntax

closelog(): true

Return

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