mirror of
https://github.com/php/php-src.git
synced 2024-11-27 11:53:33 +08:00
11 lines
197 B
Plaintext
11 lines
197 B
Plaintext
|
--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...
|