From 1b4a5ca59d2a004d40799a01f699fa3dbf8dbd74 Mon Sep 17 00:00:00 2001 From: Daniel Beckham Date: Tue, 22 May 2001 14:37:11 +0000 Subject: [PATCH] reworded the exit() function docs git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@48151 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/misc.xml | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/functions/misc.xml b/functions/misc.xml index a470c8ca02..2afc6fe5b0 100644 --- a/functions/misc.xml +++ b/functions/misc.xml @@ -394,13 +394,13 @@ This is a cup with my coffee in it. void exit - string message + mixed status - The exit function terminates execution of the - script. It has no return value, but will echo - message to STDOUT. (i.e. the browser) + The exit function terminates execution of + the script. It has no return value, but will use + status as its exit status. See also die.