mirror of
https://github.com/php-gnupg/php-gnupg.git
synced 2026-02-04 21:31:35 +00:00
added keylistiterator
This commit is contained in:
parent
04b0e31929
commit
f70929193a
3 changed files with 197 additions and 9 deletions
8
examples/keylistiterator.php
Normal file
8
examples/keylistiterator.php
Normal 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";
|
||||
}
|
||||
?>
|
||||
Loading…
Add table
Add a link
Reference in a new issue