We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent a6b4308 commit 9db3edaCopy full SHA for 9db3eda
NEWS
@@ -13,6 +13,7 @@ PHP NEWS
13
(cmb)
14
. Fixed bug #80173 (Using return value of zend_assign_to_variable() is not
15
safe). (Nikita)
16
+ . Fixed bug #73226 (--r[fcez] always return zero exit code). (cmb)
17
18
- Intl:
19
. Fixed bug #72809 (Locale::lookup() wrong result with canonicalize option).
sapi/cli/php_cli.c
@@ -1086,6 +1086,7 @@ static int do_cli(int argc, char **argv) /* {{{ */
1086
zend_printf("Exception: %s\n", Z_STRVAL_P(msg));
1087
zval_ptr_dtor(&tmp);
1088
EG(exception) = NULL;
1089
+ exit_status = 1;
1090
} else {
1091
zend_print_zval(&ref, 0);
1092
zend_write("\n", 1);
0 commit comments