当前位置: 首页>>代码示例 >>用法及示例精选 >>正文


PHP get_current_user()用法及代码示例


get_current_user()function 是一个内置函数PHP返回当前脚本的所有者。

用法:

string get_current_user()

Parameters: 该函数不接受任何参数。

返回值:该函数以字符串格式返回当前脚本的用户名。

示例 1:在此示例中,我们将使用以下命令打印当前用户名get_current_user() 函数。

PHP


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

输出:

Current script owner: dachman 

注意:该名称将根据您的系统名称而有所不同。

示例 2:在此示例中,我们将使用“检查用户”if 语句’.

PHP


<?php 
  
$name = get_current_user() ; 
  
if($name == "dachman"){ 
    echo "Current user name is dachman" ; 
} else { 
    echo "Current user name is not found" ; 
}         
  
?>

输出:

Current user name is dachman

参考: https://www.php.net/manual/en/function.get-current-user.php


相关用法


注:本文由纯净天空筛选整理自neeraj3304大神的英文原创作品 PHP get_current_user () Function。非经特殊声明,原始代码版权归原作者所有,本译文未经允许或授权,请勿转载或复制。