mirror of
https://github.com/php/php-src.git
synced 2026-04-23 07:58:20 +02:00
7485978339
This is an automated migration of most SKIPIF extension_loaded checks.
19 lines
581 B
PHP
19 lines
581 B
PHP
--TEST--
|
|
Phar: copy-on-write test 4a [cache_list]
|
|
--INI--
|
|
default_charset=UTF-8
|
|
phar.cache_list={PWD}/copyonwrite4.phar.php
|
|
phar.readonly=0
|
|
--EXTENSIONS--
|
|
phar
|
|
--FILE--
|
|
<?php
|
|
var_dump(file_exists('phar://' . __DIR__ . '/files/write4.phar/testit.txt'));
|
|
Phar::mount('phar://' . __DIR__ . '/files/write4.phar/testit.txt', 'phar://' . __DIR__ . '/files/write4.phar/tobemounted');
|
|
var_dump(file_exists('phar://' . __DIR__ . '/files/write4.phar/testit.txt'), file_get_contents('phar://' . __DIR__ . '/files/write4.phar/testit.txt'));
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|
|
bool(true)
|
|
string(2) "hi"
|