HomeMenu
Jesus · Bible · HTML · CSS · JS · PHP · SVG · Applications

posix_getlogin

Description

The posix_getlogin of POSIX for PHP returns the login name.

Syntax

posix_getlogin(): string|false

Return

Returns the login name of the user, as a string, or false on failure.

Examples

1 · void

<?

$return = posix_getlogin();

echo $return;
apache