reworded the exit() function docs

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@48151 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Daniel Beckham 2001-05-22 14:37:11 +00:00
parent 00d3e76930
commit 1b4a5ca59d

View file

@ -394,13 +394,13 @@ This is a cup with my coffee in it.
<funcsynopsis>
<funcprototype>
<funcdef>void <function>exit</function></funcdef>
<paramdef>string <parameter>message</parameter></paramdef>
<paramdef>mixed <parameter>status</parameter></paramdef>
</funcprototype>
</funcsynopsis>
<simpara>
The <function>exit</function> function terminates execution of the
script. It has no return value, but will echo
<parameter>message</parameter> to STDOUT. (i.e. the browser)
The <function>exit</function> function terminates execution of
the script. It has no return value, but will use
<parameter>status</parameter> as its exit status.
</simpara>
<simpara>
See also <function>die</function>.