«

PHP选项:get_current_user()的用法

时间:2024-3-1 20:52     作者:韩俊     分类: PHP


get_current_user

(PHP 4, PHP 5)

get_current_user — 获取当前 PHP 脚本所有者名称

说明

string get_current_user
( void
)

返回当前 PHP 脚本所有者名称。

返回值

以字符串返回用户名。

范例

Example #1 get_current_user() 例子

<?php
echo 'Current script owner: ' . get_current_user();
?>

以上例程的输出类似于:

Current script owner: SYSTEM

参见

getmyuid() - 获取 PHP 脚本所有者的 UID getmygid() - 获取当前 PHP 脚本拥有者的 GID getmypid() - 获取 PHP 进程的 ID getmyinode() - 获取当前脚本的索引节点(inode) getlastmod() - 获取页面最后修改的时间

标签: php php教程

热门推荐