--TEST-- Phar: opendir test, subdirectory --SKIPIF-- --INI-- phar.require_hash=0 --FILE-- "; $files = array(); $files['a'] = 'a'; $files['b/a'] = 'b'; $files['b/c/d'] = 'c'; $files['bad/c'] = 'd'; include 'files/phar_test.inc'; include $fname; $dir = opendir('phar://hio/b'); if ($dir) { while (false !== ($a = readdir($dir))) { var_dump($a); var_dump(is_dir('phar://hio/b/' . $a)); } } ?> --CLEAN-- --EXPECTF-- %s(1) "a" bool(false) %s(1) "c" bool(true)