blob: 777a9269dd92281297bfbcefc0a701a13dd054cb (
plain)
1
2
3
4
5
6
7
8
9
10
|
--TEST--
Bug #79948: Exit in auto-prepended file does not abort PHP execution
--INI--
auto_prepend_file={PWD}/bug79948.inc
--FILE--
<?php
echo "Should not be executed.\n";
?>
--EXPECT--
Exiting...
|