123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123 |
- --TEST--
- Phar and DirectoryIterator
- --EXTENSIONS--
- phar
- --INI--
- phar.require_hash=0
- --FILE--
- <?php
- require_once 'files/phar_oo_test.inc';
- $it = new DirectoryIterator('phar://'.$fname);
- foreach($it as $name => $ent)
- {
- var_dump($name);
- var_dump($ent->getFilename());
- var_dump($ent->isDir());
- var_dump($ent->isDot());
- }
- ?>
- ===MANUAL===
- <?php
- class MyDirectoryIterator extends DirectoryIterator
- {
- function __construct($dir)
- {
- echo __METHOD__ . "\n";
- parent::__construct($dir);
- }
- function rewind(): void
- {
- echo __METHOD__ . "\n";
- parent::rewind();
- }
- function valid(): bool
- {
- echo __METHOD__ . "\n";
- return parent::valid();
- }
- function key(): mixed
- {
- echo __METHOD__ . "\n";
- return parent::key();
- }
- function current(): mixed
- {
- echo __METHOD__ . "\n";
- return parent::current();
- }
- function next(): void
- {
- echo __METHOD__ . "\n";
- parent::next();
- }
- }
- $it = new MyDirectoryIterator('phar://'.$fname);
- foreach($it as $name => $ent)
- {
- var_dump($name);
- var_dump($ent->getFilename());
- }
- ?>
- --CLEAN--
- <?php
- unlink(__DIR__ . '/files/phar_oo_004.phar.php');
- __halt_compiler();
- ?>
- --EXPECT--
- int(0)
- string(5) "a.php"
- bool(false)
- bool(false)
- int(1)
- string(1) "b"
- bool(true)
- bool(false)
- int(2)
- string(5) "b.php"
- bool(false)
- bool(false)
- int(3)
- string(5) "e.php"
- bool(false)
- bool(false)
- ===MANUAL===
- MyDirectoryIterator::__construct
- MyDirectoryIterator::rewind
- MyDirectoryIterator::valid
- MyDirectoryIterator::current
- MyDirectoryIterator::key
- int(0)
- string(5) "a.php"
- MyDirectoryIterator::next
- MyDirectoryIterator::valid
- MyDirectoryIterator::current
- MyDirectoryIterator::key
- int(1)
- string(1) "b"
- MyDirectoryIterator::next
- MyDirectoryIterator::valid
- MyDirectoryIterator::current
- MyDirectoryIterator::key
- int(2)
- string(5) "b.php"
- MyDirectoryIterator::next
- MyDirectoryIterator::valid
- MyDirectoryIterator::current
- MyDirectoryIterator::key
- int(3)
- string(5) "e.php"
- MyDirectoryIterator::next
- MyDirectoryIterator::valid
|