Lines Matching refs:php
4 <?php if (!extension_loaded("phar")) die("skip"); ?>
9 <?php
10 $fname = __DIR__ . '/' . basename(__FILE__, '.php') . '.phar.php';
12 $file = "<?php __HALT_COMPILER(); ?>";
15 $files['a.php'] = '<?php echo "This is a\n"; ?>';
16 $files['b.php'] = '<?php echo "This is b\n"; ?>';
17 $files['b/c.php'] = '<?php echo "This is b/c\n"; ?>';
20 include $pname . '/a.php';
21 include $pname . '/b.php';
22 include $pname . '/b/c.php';
23 unlink($pname . '/b/c.php');
26 <?php
27 include $pname . '/a.php';
28 include $pname . '/b.php';
29 include $pname . '/b/c.php';
33 <?php unlink(__DIR__ . '/' . basename(__FILE__, '.clean.php') . '.phar.php'); ?>
39 …(): phar error: write operations disabled by the php.ini setting phar.readonly in %sdelete_in_phar…