1234567891011121314151617181920 |
- Test function posix_errno() by calling it with its expected arguments
- Morten Amundsen mor10am@gmail.com
- Francesco Fullone ff@ideato.it
- #PHPTestFest Cesena Italia on 2009-06-20
- posix
- <?php
- echo "*** Test by calling method or function with its expected arguments ***\n";
- // test without any error
- var_dump(posix_errno());
- ?>
- *** Test by calling method or function with its expected arguments ***
- int(0)
|