From 7217a0d33d3aa4463758d90c0c9cc76674b10201 Mon Sep 17 00:00:00 2001 From: Hartmut Holzgraefe Date: Sat, 28 Sep 2002 19:05:35 +0000 Subject: [PATCH] fix for Bug #15904 git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@97278 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/misc/functions/eval.xml | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/reference/misc/functions/eval.xml b/reference/misc/functions/eval.xml index 98667c0043..41743ca36f 100644 --- a/reference/misc/functions/eval.xml +++ b/reference/misc/functions/eval.xml @@ -1,5 +1,5 @@ - + @@ -34,7 +34,7 @@ A return statement will terminate the evaluation of the string immediately. In PHP 4, eval returns - &false; unless return is called in the evaluated + &null; unless return is called in the evaluated code, in which case the value passed to return is returned. In PHP 3, eval does not return a value.