From ebbbc0528a59068567e433dddbc70c4be2c6a8ed Mon Sep 17 00:00:00 2001 From: Mathieu Kooiman Date: Thu, 30 May 2002 14:02:40 +0000 Subject: [PATCH] - true -> TRUE in examples - true -> &true; in git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@84122 c90b9560-bf6c-de11-be94-00142212c4b1 --- reference/classobj/functions/get-class-methods.xml | 8 ++++---- reference/classobj/functions/get-class-vars.xml | 4 ++-- reference/classobj/functions/is-a.xml | 4 ++-- reference/classobj/functions/is-subclass-of.xml | 4 ++-- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/reference/classobj/functions/get-class-methods.xml b/reference/classobj/functions/get-class-methods.xml index 9f83c3daba..befc2386cd 100644 --- a/reference/classobj/functions/get-class-methods.xml +++ b/reference/classobj/functions/get-class-methods.xml @@ -1,5 +1,5 @@ - + @@ -39,17 +39,17 @@ $class_methods = get_class_methods($my_class); // see below the full example class myclass { // constructor function myclass() { - return(true); + return(TRUE); } // method 1 function myfunc1() { - return(true); + return(TRUE); } // method 2 function myfunc2() { - return(true); + return(TRUE); } } diff --git a/reference/classobj/functions/get-class-vars.xml b/reference/classobj/functions/get-class-vars.xml index e5ccee9133..7f4c0a0450 100644 --- a/reference/classobj/functions/get-class-vars.xml +++ b/reference/classobj/functions/get-class-vars.xml @@ -1,5 +1,5 @@ - + @@ -40,7 +40,7 @@ class myclass { // constructor function myclass() { - return(true); + return(TRUE); } } diff --git a/reference/classobj/functions/is-a.xml b/reference/classobj/functions/is-a.xml index d8f54bca83..e273b908b7 100644 --- a/reference/classobj/functions/is-a.xml +++ b/reference/classobj/functions/is-a.xml @@ -1,11 +1,11 @@ - + is_a - Returns true if the object is of this class or has this class as + Returns &true; if the object is of this class or has this class as one of its parents diff --git a/reference/classobj/functions/is-subclass-of.xml b/reference/classobj/functions/is-subclass-of.xml index 1bb500eeba..f1c6ce109a 100644 --- a/reference/classobj/functions/is-subclass-of.xml +++ b/reference/classobj/functions/is-subclass-of.xml @@ -1,11 +1,11 @@ - + is_subclass_of - Returns true if the object has this class as one of its parents + Returns &true; if the object has this class as one of its parents