kadm5_delete_principal

(PECL)

kadm5_delete_principal -- Deletes a kerberos principal

说明

bool kadm5_delete_principal ( resource handle, string principal )

kadm5_delete_principal() remove the principal from the Kerberos database.

返回值

如果成功则返回 TRUE,失败则返回 FALSE

范例

例子 1. kadm5_delete_principal() example

<?php

$handle
= kadm5_init_with_password("afs-1", "GONICUS.LOCAL", "admin/admin", "password");

kadm5_delete_principal($handle, "burbach@GONICUS.LOCAL");

kadm5_destroy($handle);
?>


add a note add a note User Contributed Notes
There are no user contributed notes for this page.