1
0
mirror of https://github.com/php/php-src.git synced 2026-04-22 23:48:14 +02:00
Files
archived-php-src/ext/standard/tests/file/get_current_user.phpt
T
Antony Dovgal 36d66521c9 add new tests
2006-11-16 13:01:23 +00:00

16 lines
245 B
PHP

--TEST--
get_current_user() tests
--FILE--
<?php
var_dump(get_current_user("blah"));
var_dump(get_current_user());
echo "Done\n";
?>
--EXPECTF--
Warning: Wrong parameter count for get_current_user() in %s on line %d
NULL
string(%d) "%s"
Done