(No version information available, might be only in CVS)
KRB5CCache::getEntries — Gets the SPNs for which the ccache contains tickets
Gets the SPNs for which the ccache contains tickets.
This function has no parameters.
Returns an array of SPNs for which tickets exist.
Example #1 KRB5CCache::getEntries() example
<?php
$ccache = new KRB5CCache();
$ccache->initPassword("test","test");
$entries = $ccache->getEntries();
var_dump($entries);
?>
The above example will output something similar to:
array(1) { [0]=> string(32) "krbtgt/MYREALM@MYREALM" }