import zend standard tests
[hiphop-php.git] / hphp / test / zend / good / ext-standard-network / closelog_error.php
blob2f3ec6a776eaf9ed40094d58caadc2b86def0d99
1 <?php
2 /* Prototype : bool closelog(void)
3 * Description: Close connection to system logger
4 * Source code: ext/standard/syslog.c
5 * Alias to functions:
6 */
8 echo "*** Testing closelog() : error conditions ***\n";
10 // One argument
11 echo "\n-- Testing closelog() function with one argument --\n";
12 $extra_arg = 10;;
13 var_dump( closelog($extra_arg) );
16 ===DONE===