mirror of
https://github.com/php/php-src.git
synced 2025-01-09 12:34:14 +08:00
61 lines
1.3 KiB
PHP
61 lines
1.3 KiB
PHP
--TEST--
|
|
Phar::buildFromIterator() iterator, file can't be opened
|
|
--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__) . '/buildfromiterator.phar');
|
|
var_dump($phar->buildFromIterator(new myIterator(array('a' => basename(__FILE__, 'php') . '/oopsie/there.phpt'))));
|
|
} catch (Exception $e) {
|
|
var_dump(get_class($e));
|
|
echo $e->getMessage() . "\n";
|
|
}
|
|
?>
|
|
===DONE===
|
|
--CLEAN--
|
|
<?php
|
|
unlink(dirname(__FILE__) . '/buildfromiterator.phar');
|
|
__HALT_COMPILER();
|
|
?>
|
|
--EXPECTF--
|
|
rewind
|
|
valid
|
|
current
|
|
key
|
|
%s(24) "UnexpectedValueException"
|
|
Iterator myIterator returned a file that could not be opened "phar_buildfromiterator7./oopsie/there.phpt"
|
|
===DONE===
|