added keylistiterator

This commit is contained in:
Thilo Raufeisen 2005-10-08 19:42:50 +00:00
parent 04b0e31929
commit f70929193a
3 changed files with 197 additions and 9 deletions

View file

@ -0,0 +1,8 @@
<?php
require_once (dirname(__FILE__)."/main.php");
$iterator = new gnupg_keylistiterator("php.net");
foreach($iterator as $key => $value){
echo $key." -> ".$value."\n";
}
?>