corrected the exit() documentation to better represent what it does

git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@48088 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
Daniel Beckham 2001-05-21 19:36:19 +00:00
parent 7378e7fcf1
commit e407e06803

View file

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