Annotation of embedaddon/php/ext/phar/tests/cache_list/files/write4.phar.inc, revision 1.1

1.1     ! misho       1: <?php
        !             2: 
        !             3: $fname = dirname(__FILE__) . '/write4.phar';
        !             4: @unlink($fname);
        !             5: 
        !             6: $phar = new Phar($fname);
        !             7: $phar->setStub('<?php
        !             8: var_dump(file_exists("phar://" . __FILE__ . "/test.txt"));
        !             9: clearstatcache();
        !            10: Phar::mount("test.txt", "phar://" . __FILE__ . "/tobemounted");
        !            11: var_dump(file_exists("phar://" . __FILE__ . "/test.txt"), file_get_contents("phar://" . __FILE__ . "/test.txt"));
        !            12: echo "ok\n";
        !            13: __HALT_COMPILER();
        !            14: ?>');
        !            15: $phar['tobemounted'] = "hi";
        !            16: ?>

FreeBSD-CVSweb <freebsd-cvsweb@FreeBSD.org>