kadm5_delete_principal -- Deletes a kerberos principal.
Description
Returns TRUE on success, or FALSE on failure.
kadm5_delete_principal()
remove the principal from the
Kerberos database.
Example 1. KADM5 extension overview example <?php
$handle = kadm5_init_with_password("afs-1", "GONICUS.LOCAL", "admin/admin", "password");
kadm5_delete_principal($handle, "burbach@GONICUS.LOCAL");
kadm5_destroy($handle);
?> |
|