mirror of
https://github.com/php/php-src.git
synced 2024-12-16 21:37:49 +08:00
17 lines
366 B
PHP
17 lines
366 B
PHP
--TEST--
|
|
Test function posix_geteuid() by calling it with its expected arguments
|
|
--CREDITS--
|
|
Marco Fabbri mrfabbri@gmail.com
|
|
Francesco Fullone ff@ideato.it
|
|
#PHPTestFest Cesena Italia on 2009-06-20
|
|
--SKIPIF--
|
|
<?php
|
|
if(!extension_loaded("posix")) print "skip - POSIX extension not loaded";
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
var_dump(posix_geteuid());
|
|
?>
|
|
--EXPECTF--
|
|
int(%d)
|