mirror of
https://github.com/php/php-src.git
synced 2026-04-21 06:51:18 +02:00
53 lines
1.1 KiB
PHP
53 lines
1.1 KiB
PHP
--TEST--
|
|
Phar::buildFromIterator() iterator, iterator returns non-string
|
|
--EXTENSIONS--
|
|
phar
|
|
--INI--
|
|
phar.require_hash=0
|
|
phar.readonly=0
|
|
--FILE--
|
|
<?php
|
|
class myIterator implements Iterator
|
|
{
|
|
var $a;
|
|
function __construct(array $a)
|
|
{
|
|
$this->a = $a;
|
|
}
|
|
function next(): void {
|
|
echo "next\n";
|
|
next($this->a);
|
|
}
|
|
function current(): mixed {
|
|
echo "current\n";
|
|
return current($this->a);
|
|
}
|
|
function key(): mixed {
|
|
echo "key\n";
|
|
return key($this->a);
|
|
}
|
|
function valid(): bool {
|
|
echo "valid\n";
|
|
return is_object(current($this->a));
|
|
}
|
|
function rewind(): void {
|
|
echo "rewind\n";
|
|
reset($this->a);
|
|
}
|
|
}
|
|
try {
|
|
chdir(__DIR__);
|
|
$phar = new Phar(__DIR__ . '/buildfromiterator5.phar');
|
|
var_dump($phar->buildFromIterator(new myIterator(array('a' => new stdClass))));
|
|
} catch (Exception $e) {
|
|
var_dump(get_class($e));
|
|
echo $e->getMessage() . "\n";
|
|
}
|
|
?>
|
|
--EXPECTF--
|
|
rewind
|
|
valid
|
|
current
|
|
%s(24) "UnexpectedValueException"
|
|
Iterator myIterator returned an invalid value (must return a string)
|