PHP Portal » PHP Handbuch » kadm5_get_policies

Werbung

kadm5_get_policies


(PECL kadm5 >= 0.2.3)

kadm5_get_policiesGets all policies from the Kerberos database

Beschreibung

array kadm5_get_policies ( resource $handle )

Gets an array containing the policies's names.

Parameter-Liste

handle

A KADM5 handle.

Rückgabewerte

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

Beispiele

PHP Code
1
2
3
4
5
6
$handle = kadm5_init_with_password("afs-1", "GONICUS.LOCAL", "admin/admin", "password"); print "<h1>get_policies</h1>\n"; foreach (kadm5_get_policies($handle) as $policy) { echo "$policy<br />\n"; } kadm5_destroy($handle);