posix_errno_basic.phpt 460 B

1234567891011121314151617181920
  1. --TEST--
  2. Test function posix_errno() by calling it with its expected arguments
  3. --CREDITS--
  4. Morten Amundsen mor10am@gmail.com
  5. Francesco Fullone ff@ideato.it
  6. #PHPTestFest Cesena Italia on 2009-06-20
  7. --EXTENSIONS--
  8. posix
  9. --FILE--
  10. <?php
  11. echo "*** Test by calling method or function with its expected arguments ***\n";
  12. // test without any error
  13. var_dump(posix_errno());
  14. ?>
  15. --EXPECT--
  16. *** Test by calling method or function with its expected arguments ***
  17. int(0)