kadm5_delete_principal

(PECL kadm5 >= 0.2.3)
Deletes a kerberos principal
bool kadm5_delete_principal ( resource $handle, string $principal )

Removes the principal from the Kerberos database.

Parameters:
handle

A KADM5 handle.

principal

The removed principal.

Returns:

Returns TRUE on success or FALSE on failure.

Examples:
kadm5_delete_principal() example
1
2
3
4
5
6
7
8
<?php
 
$handle = kadm5_init_with_password("afs-1""GONICUS.LOCAL""admin/admin""password");
 
kadm5_delete_principal($handle"burbach@GONICUS.LOCAL");
 
kadm5_destroy($handle);
?>
See also:

kadm5_modify_principal() -

kadm5_create_principal() -

doc_php
2025-01-10 15:47:30
Comments
Leave a Comment

Please login to continue.