kadm5_get_principals

(PECL)

kadm5_get_principals -- Gets all principals from the Kerberos database

说明

array kadm5_get_principals ( resource handle )

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

返回值

Returns array of principals on success, or FALSE on failure.

范例

例子 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);
?>


add a note add a note User Contributed Notes
There are no user contributed notes for this page.