mirror of
https://github.com/php/php-src.git
synced 2024-12-16 21:37:49 +08:00
30 lines
548 B
PHP
30 lines
548 B
PHP
--TEST--
|
|
Test posix_getpwuid() function : basic functionality
|
|
--SKIPIF--
|
|
<?php
|
|
if (!extension_loaded('posix')) die('skip - POSIX extension not loaded');
|
|
?>
|
|
--FILE--
|
|
<?php
|
|
echo "Basic test of POSIX getpwuid\n";
|
|
|
|
|
|
$pwuid = posix_getpwuid(posix_getuid());
|
|
|
|
print_r($pwuid);
|
|
|
|
?>
|
|
===DONE====
|
|
--EXPECTREGEX--
|
|
Basic test of POSIX getpwuid
|
|
Array
|
|
\(
|
|
\[name\] => [^\r\n]+
|
|
\[passwd\] => [^\r\n]+
|
|
\[uid\] => [0-9]+
|
|
\[gid\] => [0-9]+
|
|
\[gecos\] => [^\r\n]*
|
|
\[dir\] => [^\r\n]+
|
|
\[shell\] => [^\r\n]+
|
|
\)
|
|
===DONE====
|