kadm5_delete_principal
(PECL kadm5:0.2.3)
kadm5_delete_principal — Deletes a kerberos principal
Descripción
bool kadm5_delete_principal
( resource $handle
, string $principal
)
Removes the principal from the Kerberos database.
Lista de parámetros
- handle
-
A KADM5 handle.
- principal
-
The removed principal.
Valores retornados
Devuelve TRUE si todo se llevó a cabo correctamente, FALSE en caso de fallo.
Ejemplos
Example #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);
?>
kadm5_delete_principal
There are no user contributed notes for this page.
