posix_getsid_basic.phpt 305 B

1234567891011121314151617181920
  1. --TEST--
  2. Test posix_getsid() function : basic functionality
  3. --EXTENSIONS--
  4. posix
  5. --FILE--
  6. <?php
  7. echo "Basic test of posix_getsid function\n";
  8. $pid = posix_getpid();
  9. $sid = posix_getsid($pid);
  10. var_dump($sid);
  11. ?>
  12. ===DONE====
  13. --EXPECTF--
  14. Basic test of posix_getsid function
  15. int(%d)
  16. ===DONE====