wp 當前使用者 登入使用者

2021-08-27 03:27:10 字數 1167 閱讀 7173

當前使用者

<?php global $current_user;

get_currentuserinfo();

echo '使用者名稱: ' . $current_user->user_login . "\n";

echo '名字: ' . $current_user->user_firstname . "\n";

echo '姓氏: ' . $current_user->user_lastname . "\n";

echo '公開顯示名: ' . $current_user->display_name . "\n";

echo '使用者 id:' . $current_user->id . "\n";

?>

登入使用者

1). get_currentuserinfo();

此函式將當前登入使用者資訊賦給全域性變數$current_user以及一些單獨的使用者資訊全域性變數例如$display_name, $user_email等。 如下:

php** 

<?php    

global $current_user, $display_name , $user_email;  

get_currentuserinfo();  

//全域性變數$current_user  

echo 'username: ' . $current_user->user_login . "\n";  

echo 'user email: ' . $current_user->user_email . "\n";  

echo 'user first name: ' . $current_user->user_firstname . "\n";  

echo 'user last name: ' . $current_user->user_lastname . "\n";  

echo 'user display name: ' . $current_user->display_name . "\n";  

echo 'user id: ' . $current_user->id . "\n";  

//單獨的全域性變數  

echo $display_name . "'s email address is: " . $user_email;  

?>  

Centos 當前登入使用者資訊 w who

w who 顯示當前登入系統的使用者,但w顯示的更為詳細 who 相關引數 預設輸出 使用者名稱 登入終端 登入時間 a 列出所有資訊 b 系統最近啟動日期 m 當前終端資訊,相當於 who am i q 列出當前登入使用者並統計使用者數量 r 顯示當前系統執行級別 u 顯得當前每個使用者的使用者名...

檢視登入使用者

一 超級使用者及普通使用者redhat 7.x版本 超級使用者 root uid 0 普通使用者 uid 1000 65535 系統使用者 偽使用者 uid 1 999 redhat7.x版本之前的版本 例如6.4 6.0 5.0 4.0 3.0等 超級使用者 root uid 0 普通使用者 ui...

mysql新增登入使用者 設定遠端登入使用者

mysql u使用者名稱 p密碼 在mysql所在的伺服器上登入mysqluse mysql 進入mysql資料庫grant all privileges on to test identified by 123456 with grant option 指所有ip都可用此使用者登入,這個值是ip的...