mirror of
https://github.com/php/php-src.git
synced 2026-04-27 18:23:26 +02:00
13 lines
183 B
PHP
13 lines
183 B
PHP
--TEST--
|
|
Using disable_functions INI to remove exit
|
|
--INI--
|
|
disable_functions=exit
|
|
--FILE--
|
|
<?php
|
|
|
|
exit();
|
|
|
|
?>
|
|
--EXPECT--
|
|
Warning: Cannot disable function exit() in Unknown on line 0
|