mirror of
https://github.com/php/php-src.git
synced 2024-12-17 05:50:14 +08:00
60 lines
1.2 KiB
PHP
60 lines
1.2 KiB
PHP
--TEST--
|
|
Phar::buildFromIterator() iterator, iterator returns non-string
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("phar")) die("skip"); ?>
|
|
--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() {
|
|
echo "next\n";
|
|
return next($this->a);
|
|
}
|
|
function current() {
|
|
echo "current\n";
|
|
return current($this->a);
|
|
}
|
|
function key() {
|
|
echo "key\n";
|
|
return key($this->a);
|
|
}
|
|
function valid() {
|
|
echo "valid\n";
|
|
return current($this->a);
|
|
}
|
|
function rewind() {
|
|
echo "rewind\n";
|
|
return reset($this->a);
|
|
}
|
|
}
|
|
try {
|
|
chdir(dirname(__FILE__));
|
|
$phar = new Phar(dirname(__FILE__) . '/buildfromiterator5.phar');
|
|
var_dump($phar->buildFromIterator(new myIterator(array('a' => new stdClass))));
|
|
} catch (Exception $e) {
|
|
var_dump(get_class($e));
|
|
echo $e->getMessage() . "\n";
|
|
}
|
|
?>
|
|
===DONE===
|
|
--CLEAN--
|
|
<?php
|
|
unlink(dirname(__FILE__) . '/buildfromiterator5.phar');
|
|
__HALT_COMPILER();
|
|
?>
|
|
--EXPECTF--
|
|
rewind
|
|
valid
|
|
current
|
|
%s(24) "UnexpectedValueException"
|
|
Iterator myIterator returned an invalid value (must return a string)
|
|
===DONE===
|