PHP Dokumentation: Function kadm5-delete-principal
12. Januar 2010 von werner
kadm5_delete_principal
(PECL kadm5 >= 0.2.3)
kadm5_delete_principal — Deletes a kerberos principal
Beschreibung
Removes the principal from the Kerberos database.
Parameter-Liste
- handle
A KADM5 handle.
- principal
The removed principal.
Rückgabewerte
Gibt bei Erfolg TRUE zurück. Im Fehlerfall wird FALSE zurückgegeben.
Beispiele
Beispiel #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);
?>Siehe auch
- kadm5_modify_principal() – Modifies a kerberos principal with the given parameters
- kadm5_create_principal() – Creates a kerberos principal with the given parameters