Please note that the phar stream wrapper does not work with any glob.When you decide to move your project to phar archives you need to consider this.The following won't work:<?phpglob('phar://some.phar/*');new DirectoryIterator('glob://phar://some.phar/*');?>While the following will work:<?phpnew DirectoryIterator('phar://some.phar/');?>