PHP Doku:: Gets all principals from the Kerberos database - function.kadm5-get-principals.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzAuthentifizierungsdiensteKerberos VKADM5 Funktionenkadm5_get_principals

Ein Service von Reinhard Neidl - Webprogrammierung.

KADM5 Funktionen

<<kadm5_get_principal

kadm5_init_with_password>>

kadm5_get_principals

(PECL kadm5 >= 0.2.3)

kadm5_get_principalsGets all principals from the Kerberos database

Beschreibung

array kadm5_get_principals ( resource $handle )

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

Parameter-Liste

handle

A KADM5 handle.

Rückgabewerte

Returns array of principals on successIm Fehlerfall wird FALSE zurückgegeben..

Beispiele

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

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)