mirror of
https://github.com/php/php-src.git
synced 2026-04-17 21:11:02 +02:00
Phar phpinfo output lists also info about bz2 extension if it's disabled and a quick info about installation. Instead of not maintained pecl package bz2 the ext/bz2 should be mentioned. Also some outdated pecl/phar are updated to ext/phar instead in test comments.
15 lines
256 B
PHP
15 lines
256 B
PHP
--TEST--
|
|
Phar: phar run with ext/phar with default stub
|
|
--SKIPIF--
|
|
<?php if (!extension_loaded("phar")) die("skip"); ?>
|
|
--FILE--
|
|
<?php
|
|
include dirname(__FILE__) . '/files/nophar.phar';
|
|
?>
|
|
===DONE===
|
|
--EXPECT--
|
|
in b
|
|
<?php include "b/c.php";
|
|
in d
|
|
===DONE===
|