mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
15 lines
283 B
PHP
15 lines
283 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
|
|
--EXTENSIONS--
|
|
posix
|
|
--FILE--
|
|
<?php
|
|
var_dump(posix_geteuid());
|
|
?>
|
|
--EXPECTF--
|
|
int(%d)
|