當前位置: 首頁>>代碼示例 >>用法及示例精選 >>正文


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。非經特殊聲明,原始代碼版權歸原作者所有,本譯文未經允許或授權,請勿轉載或複製。