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.