php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #17998 "exit();" in cli-mode sets return code to 255
Submitted: 2002-06-26 13:41 UTC Modified: 2002-06-26 13:42 UTC
From: tho at e-dict dot net Assigned:
Status: Closed Package: Unknown/Other Function
PHP Version: 4.2.1 OS: Linux 2.4.16
Private report: No CVE-ID: None
 [2002-06-26 13:41 UTC] tho at e-dict dot net
When using cli mode the return code of php is not
set to the argument passed to "exit" but to 255
Setting the return code worked fine in 3.0.7, 4.0.6, and 4.1.2. Bug or feature?

tho@dev0:~> cat test.php
<?
exit(20);
?>
tho@dev0:~> php test.php
X-Powered-By: PHP/4.2.1
Content-type: text/html

tho@dev0:~> echo $?
255
tho@dev0:~>

Patches

Add a Patch

Pull Requests

Add a Pull Request

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2002-06-26 13:42 UTC] derick@php.net
This bug has been fixed in CVS. You can grab a snapshot of the
CVS version at http://snaps.php.net/. In case this was a documentation 
problem, the fix will show up soon at http://www.php.net/manual/.
In case this was a PHP.net website problem, the change will show
up on the PHP.net site and on the mirror sites.
Thank you for the report, and for helping us make PHP better.
 
PHP Copyright © 2001-2024 The PHP Group
All rights reserved.
Last updated: Thu Apr 25 03:01:29 2024 UTC