mirror of
https://github.com/php/php-src.git
synced 2026-03-25 16:52:18 +01:00
Make EG(exit_status) the single source of truth for the exit status, instead of having two variables that we cannot really keep synchronized.
8 lines
73 B
PHP
8 lines
73 B
PHP
<?php
|
|
|
|
register_shutdown_function(function() {
|
|
die(111);
|
|
});
|
|
|
|
die(222);
|