php-src/ext/phar/tests/031.phpt
2007-02-06 20:48:37 +00:00

32 lines
566 B
PHP
Executable File

--TEST--
Phar: include and parser error
--SKIPIF--
<?php if (!extension_loaded("phar")) print "skip"; ?>
--INI--
phar.require_hash=0
--FILE--
<?php
$pharconfig = 3;
require_once 'phar_oo_test.inc';
Phar::loadPhar($fname);
$pname = 'phar://' . $fname . '/a.php';
var_dump(file_get_contents($pname));
require $pname;
?>
===DONE===
--CLEAN--
<?php
unlink(dirname(__FILE__) . '/phar_oo_test.phar.php');
__halt_compiler();
?>
--EXPECTF--
string(25) "<?php echo new new class;"
Parse error: %s error%sexpecting%s in phar://%sphar_oo_test.phar.php/a.php on line %d