私はphpFoxサイトに行くためにウェブカメラシステムを作成しており、現在のユーザーのIDを取得しようとしています。私は以下を試しましたが、無駄です。phpFoxウェブサイトの現在のユーザーの詳細を取得するにはどうすればよいですか?
ob_start();
session_start();
function get_user_id() {
$userid = null;
$id = Phpfox::getUserBy('user_id');
if (!empty($id)) {
$userid = $id;
}
return $userid;
}
$idd = get_user_id();
echo("User ID: " . $idd);
現在のユーザーのユーザーIDはどのように取得できますか? phpFoxで
http://stackoverflow.com/questions/22877907/how-to-fetch-the-current-user-data-in-phpfoxの重複している可能性があります。 – RiggsFolly
ありがとうございましたが、役に立たなかった –
まだこの回答はありませんhttp://stackoverflow.com/a/23495180/2310830 – RiggsFolly