Lines Matching refs:phar
2 ISSUE #115 (path issue when using phar)
6 phar.readonly=0
9 <?php if (!extension_loaded("phar")) die("skip"); ?>
15 require "phar://this/index.php";
17 $p = new Phar(__DIR__ . '/issue0115_1.phar.php', 0, 'this');
20 require_once "phar://this/hello.php";
25 $p = new Phar(__DIR__ . '/issue0115_2.phar.php', 0, 'this');
28 require_once "phar://this/hello.php";
35 php_cli_server_start('-d opcache.enable=1 -d opcache.enable_cli=1 -d extension=phar.'.PHP_SHLIB_SUF…
36 echo file_get_contents('http://' . PHP_CLI_SERVER_ADDRESS . '/issue0115_1.phar.php');
37 echo file_get_contents('http://' . PHP_CLI_SERVER_ADDRESS . '/issue0115_2.phar.php');
41 @unlink(__DIR__ . '/issue0115_1.phar.php');
42 @unlink(__DIR__ . '/issue0115_2.phar.php');