kadm5_get_policies

(PECL kadm5 >= 0.2.3)

kadm5_get_policiesGets all policies from the Kerberos database

설명

array kadm5_get_policies ( resource $handle )

Gets an array containing the policies's names.

인수

handle

A KADM5 handle.

반환값

Returns array of policies on success실패 시 FALSE를 반환합니다.

예제

Example #1 kadm5_get_policies() example

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

add a note add a note

User Contributed Notes

There are no user contributed notes for this page.
To Top