update : 2015.11.03
php.shukuma.com

검색:
 
 
Gets all principals from the Kerberos database

kadm5_get_principals

(PECL kadm5 >= 0.2.3)

kadm5_get_principalsGets all principals from the Kerberos database

설명

array kadm5_get_principals ( resource $handle )

kadm5_get_principals() returns an array containing the principals's names.

인수

handle

A KADM5 handle.

반환값

Returns array of principals on success실패 시 FALSE를 반환합니다.

예제

Example #1 kadm5_get_principals() example

<?php
$handle 
kadm5_init_with_password("afs-1""GONICUS.LOCAL""admin/admin""password");

print 
"<h1>get_principals</h1>\n";
foreach (
kadm5_get_principals($handle) as $principal) {
    echo 
"$principal<br />\n";
}

kadm5_destroy($handle);
?>

참고