kadm5_get_policies

(PECL kadm5 >= 0.2.3)
Gets all policies from the Kerberos database
array kadm5_get_policies ( resource $handle )

Gets an array containing the policies's names.

Parameters:
handle

A KADM5 handle.

Returns:

Returns array of policies on success or FALSE on failure.

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

doc_php
2016-02-24 15:54:31
Comments
Leave a Comment

Please login to continue.