try {
$p = new Phar('brandnewphar.phar');
$p['file1.txt'] = 'hi';
- $p->commit();
var_dump($p->getStub());
$p->setStub("<?php
function __autoload(\$class)
unlink(dirname(__FILE__) . '/brandnewphar.phar');
?>
--EXPECT--
-RecursiveDirectoryIterator::__construct(phar://brandnewphar.phar): failed to open dir: phar error: no directory in "phar://brandnewphar.phar", must have at least phar://brandnewphar.phar/ for root directory (always use full path to a new phar)
+string(29) "<?php __HALT_COMPILER(); ?>
+"
+string(200) "<?php
+function __autoload($class)
+{
+ include 'phar://' . str_replace('_', '/', $class);
+}
+Phar::mapPhar('brandnewphar.phar');
+include 'phar://brandnewphar.phar/startup.php';
+__HALT_COMPILER(); ?>
+"
===DONE===
\ No newline at end of file