From e407e0680376d317a1a46f36d1f48f2eae62a884 Mon Sep 17 00:00:00 2001 From: Daniel Beckham Date: Mon, 21 May 2001 19:36:19 +0000 Subject: [PATCH] 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 --- functions/misc.xml | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/functions/misc.xml b/functions/misc.xml index caa192b3f3..b208466397 100644 --- a/functions/misc.xml +++ b/functions/misc.xml @@ -394,12 +394,13 @@ This is a cup with my coffee in it. void exit - + string message - This language construct terminates parsing of the script. It - does not return. + The exit function terminates parsing of the + script. It has no return value, but will echo + message to STDOUT. (i.e. the browser) See also die.