PHP 배열 값 저장 (PHP Save array value)


문제 설명

PHP 배열 값 저장 (PHP Save array value)

저는 Joomla 3.4.5에서 $user‑>groups를 사용하여 특정 사용자에게 할당된 그룹의 배열을 가져오고 있지만 대신 액세스 수준을 얻을 수 있는 방법이 있습니까? 그룹이 아닌 특정 할당된 ACL을 확인하고 싶습니다. J Docs에서 찾을 수 없었습니다.

고마워요!


참조 솔루션

방법 1:

I believe this is the proper way to retrieve a Joomla user's access levels:

$levels = JFactory::getUser()‑>getAuthorisedViewLevels();

print_r ($levels);

(by user5128127user5128127)

참조 문서

  1. PHP Save array value (CC BY‑SA 2.5/3.0/4.0)

#PHP #joomla






관련 질문

bash의 rsync가 php 생성 --exclude-from 파일을 구문 분석하지 않음 (rsync in bash not parsing php-generated --exclude-from file)

PHP 배열 값 저장 (PHP Save array value)

검색으로 배열에서 특정 데이터 가져오기 (get specific datas from a array by a search)

창 서비스를 사용하여 PHP 파일 트리거 (Trigger a php file using window service)

yii2 컨트롤러 작업 주입은 어떻게 작동합니까? (How does the yii2 Controller action injection works)

php와 drupal을 사용하여 pdf를 텍스트로 변환 (pdf to text convert using php and drupal)

PHP에서 카테고리 및 하위 카테고리 목록 검색 (Retrieve Category & Subcategory list in PHP)

PDO - COUNT(*) 결과를 얻습니까? (PDO - get the result of a COUNT(*)?)

PHP - MySQL 쿼리 문제 (PHP - Mysql query problem)

제품용 Reviews.io API의 Foreach 루프 (Foreach loop in Reviews.io API for Products)

숫자를 나누고 점 뒤에 하나의 숫자를 유지하십시오. (Split the number and keep one number after the dot)

내 메시지 입력이 데이터베이스에 들어가지 않습니다. (My message input doesn't get into database)







코멘트