closelog_basic.phpt 545 B

1234567891011121314151617181920212223
  1. --TEST--
  2. Test closelog() function : basic functionality
  3. --FILE--
  4. <?php
  5. /* Prototype : bool closelog(void)
  6. * Description: Close connection to system logger
  7. * Source code: ext/standard/syslog.c
  8. * Alias to functions:
  9. */
  10. echo "*** Testing closelog() : basic functionality ***\n";
  11. // Zero arguments
  12. echo "\n-- Testing closelog() function with Zero arguments --\n";
  13. var_dump( closelog() );
  14. ?>
  15. ===DONE===
  16. --EXPECT--
  17. *** Testing closelog() : basic functionality ***
  18. -- Testing closelog() function with Zero arguments --
  19. bool(true)
  20. ===DONE===