mirror of
https://github.com/php/php-src.git
synced 2025-08-18 15:08:55 +02:00
18 lines
371 B
PHP
18 lines
371 B
PHP
<?php
|
|
|
|
$fname = dirname(__FILE__) . '/write7.phar';
|
|
@unlink($fname);
|
|
|
|
$phar = new Phar($fname);
|
|
$phar->setStub('<?php
|
|
$p = new Phar(__FILE__);
|
|
var_dump(file_exists("phar://" . __FILE__ . "/test.txt"));
|
|
$p->delete("test.txt");
|
|
clearstatcache();
|
|
var_dump(file_exists("phar://" . __FILE__ . "/test.txt"));
|
|
echo "ok\n";
|
|
__HALT_COMPILER();
|
|
?>');
|
|
$phar['test.txt'] = "hi
|
|
";
|
|
?>
|