PHP
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | conferences | my php.net

search for in the

kadm5_init_with_password> <kadm5_get_principal
Last updated: Fri, 01 Aug 2008

view this page in

kadm5_get_principals

(PECL kadm5:0.2.3)

kadm5_get_principalsGets all principals from the Kerberos database

Descrierea

array kadm5_get_principals ( resource $handle )

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

Parametri

handle

A KADM5 handle.

Valorile întroarse

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

Exemple

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

Vedeţi de asemenea



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

kadm5_init_with_password> <kadm5_get_principal
Last updated: Fri, 01 Aug 2008
 
 
show source | credits | sitemap | contact | advertising | mirror sites