mirror of
https://github.com/php/php-src.git
synced 2024-12-17 05:50:14 +08:00
31 lines
823 B
PHP
31 lines
823 B
PHP
--TEST--
|
|
Phar: delete test
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("phar")) die("skip"); ?>
|
|
--INI--
|
|
phar.readonly=0
|
|
phar.require_hash=0
|
|
--FILE--
|
|
<?php
|
|
$fname = dirname(__FILE__) . '/' . basename(__FILE__, '.php') . '.phar.php';
|
|
$pname = 'phar://' . $fname;
|
|
$file = "<?php
|
|
Phar::mapPhar('hio');
|
|
__HALT_COMPILER(); ?>";
|
|
|
|
$files = array();
|
|
$files['a'] = 'a';
|
|
include 'files/phar_test.inc';
|
|
include $fname;
|
|
$phar = new Phar($fname);
|
|
|
|
echo file_get_contents($pname . '/a') . "\n";
|
|
$phar->delete('a');
|
|
echo file_get_contents($pname . '/a') . "\n";
|
|
?>
|
|
--CLEAN--
|
|
<?php unlink(dirname(__FILE__) . '/' . basename(__FILE__, '.clean.php') . '.phar.php'); ?>
|
|
--EXPECTF--
|
|
a
|
|
|
|
Warning: file_get_contents(phar://%sdelete.phar.php/a): failed to open stream: phar error: "a" is not a file in phar "%sdelete.phar.php" in %sdelete.php on line 16
|