summaryrefslogtreecommitdiff
path: root/ext/standard/tests/network/closelog_basic.phpt
blob: 8031da37a53e6b4c6153ac1ada7291db48b06bf9 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
--TEST--
Test closelog() function : basic functionality
--FILE--
<?php
/* Prototype  : bool closelog(void)
 * Description: Close connection to system logger
 * Source code: ext/standard/syslog.c
 * Alias to functions:
 */

echo "*** Testing closelog() : basic functionality ***\n";

// Zero arguments
echo "\n-- Testing closelog() function with Zero arguments --\n";
var_dump( closelog() );
?>
--EXPECT--
*** Testing closelog() : basic functionality ***

-- Testing closelog() function with Zero arguments --
bool(true)