mirror of
https://github.com/php/php-src.git
synced 2025-08-16 05:58:45 +02:00
12 lines
130 B
PHP
12 lines
130 B
PHP
--TEST--
|
|
get_current_user() tests
|
|
--FILE--
|
|
<?php
|
|
|
|
var_dump(get_current_user());
|
|
|
|
echo "Done\n";
|
|
?>
|
|
--EXPECTF--
|
|
string(%d) %s
|
|
Done
|