From e8289cd5f61a864e50096d8afe9962cf59f3d14c Mon Sep 17 00:00:00 2001 From: Kalle Sommer Nielsen Date: Wed, 20 Oct 2010 07:11:18 +0000 Subject: [PATCH] Fixed bug #46316 (call_user_func_array php5.x differences) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@304537 c90b9560-bf6c-de11-be94-00142212c4b1 --- .../functions/call-user-func-array.xml | 27 +++++++++++++++++++ .../funchand/functions/call-user-func.xml | 27 +++++++++++++++++++ 2 files changed, 54 insertions(+) diff --git a/reference/funchand/functions/call-user-func-array.xml b/reference/funchand/functions/call-user-func-array.xml index 5d2176ee4c..9cba247e48 100644 --- a/reference/funchand/functions/call-user-func-array.xml +++ b/reference/funchand/functions/call-user-func-array.xml @@ -50,6 +50,33 @@ + + &reftitle.changelog; + + + + + + &Version; + &Description; + + + + + 5.3.0 + + The interpretation of object oriented keywords like parent + and self have changed. Previously calling them using the + double colon syntax would emit an E_STRICT warning because + they was interpreted as static. + + + + + + + + &reftitle.examples; diff --git a/reference/funchand/functions/call-user-func.xml b/reference/funchand/functions/call-user-func.xml index ce9a369280..0cbf631061 100644 --- a/reference/funchand/functions/call-user-func.xml +++ b/reference/funchand/functions/call-user-func.xml @@ -89,6 +89,33 @@ echo $a."\n"; + + &reftitle.changelog; + + + + + + &Version; + &Description; + + + + + 5.3.0 + + The interpretation of object oriented keywords like parent + and self have changed. Previously calling them using the + double colon syntax would emit an E_STRICT warning because + they was interpreted as static. + + + + + + + + &reftitle.examples;