kadm5_get_principals

(PECL kadm5 >= 0.2.3)
Gets all principals from the Kerberos database
array kadm5_get_principals ( resource $handle )

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

Parameters:
handle

A KADM5 handle.

Returns:

Returns array of principals on success or FALSE on failure.

Examples:
kadm5_get_principals() example
1
2
3
4
5
6
7
8
9
10
<?php
$handle = kadm5_init_with_password("afs-1""GONICUS.LOCAL""admin/admin""password");
 
print "<h1>get_principals</h1>\n";
foreach (kadm5_get_principals($handleas $principal) {
    echo "$principal<br />\n";
}
 
kadm5_destroy($handle);
?>
See also:

kadm5_get_principal() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.