From fb36f55e2c78665254ef0e352b16bfee4c5bfae4 Mon Sep 17 00:00:00 2001 From: Nuno Lopes Date: Sun, 12 Sep 2004 09:57:43 +0000 Subject: [PATCH] add get_parent_class() and get_methods() git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@168427 c90b9560-bf6c-de11-be94-00142212c4b1 --- appendices/migration5.xml | 13 +++++++------ 1 file changed, 7 insertions(+), 6 deletions(-) diff --git a/appendices/migration5.xml b/appendices/migration5.xml index d0ff792b0f..a9741d35d9 100755 --- a/appendices/migration5.xml +++ b/appendices/migration5.xml @@ -1,5 +1,5 @@ - + Migrating from PHP 4 to PHP 5 @@ -92,11 +92,12 @@ - get_class now returns the name of the class as it - was declared (case-sensitive) which may lead to problems in older scripts - that rely on the previous behaviour (the class name was always returned - lowercased). A possible solution is to search for - get_class in all your scripts and use + get_class, get_parent_class + and get_class_methods now return the name of the + classes/methods as they were declared (case-sensitive) which may lead to + problems in older scripts that rely on the previous behaviour (the + class/method name was always returned lowercased). A possible solution + is to search for those functions in all your scripts and use strtolower.