略微加速

PHP官方手册 - 互联网笔记

PHP - Manual: kadm5_get_policies

2024-04-28

kadm5_get_policies

(PECL kadm5 >= 0.2.3)

kadm5_get_policiesGets all policies from the Kerberos database

说明

kadm5_get_policies ( resource $handle ) : array

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.

官方地址:https://www.php.net/manual/en/function.kadm5-get-policies.php

北京半月雨文化科技有限公司.版权所有 京ICP备12026184号-3