Forum und email

kadm5_delete_principal

(PECL kadm5:0.2.3)

kadm5_delete_principal — Deletes a kerberos principal

Beschreibung

bool kadm5_delete_principal ( resource $handle , string $principal )

kadm5_delete_principal() remove the principal from the Kerberos database.

Rückgabewerte

Gibt bei Erfolg TRUE zurück, im Fehlerfall FALSE.

Beispiele

Example#1 kadm5_delete_principal() example

<?php

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

kadm5_delete_principal($handle"[email protected]");

kadm5_destroy($handle);
?>