Edit report at https://bugs.php.net/bug.php?id=62113&edit=1
ID: 62113
User updated by:nath...@php.net
Reported by:nath...@php.net
Summary:ReflectionMethod::invoke && invokeArgs support
static binding...
Status: Open
Type: Feature/Change Request
Package:Reflection related
Operating System: N/A
PHP Version:5.4.3
Block user comment: N
Private report: N
New Comment:
* Updated email address for profiling and spam reasons
Previous Comments:
[2012-05-22 21:38:01] nath...@php.net
Description:
I think it'd be useful to be able to set the static binding of a class method
if
it's a static method. Currently you can only set the binding if it's not a
static
method, but my patch (see below) now will allow you to pass a string or an
object
to the ReflectionMethod::invoke and invokeArgs methods allowing you to set the
static binding of static functions.
The script below will work with the patch in place, but not work with current
version of PHP because you *must* pass a valid object or null as the first
argument, but if you are wanting it to call a static method my patch will allow
you to set the Class the static method will run under.
Test script:
---
' . current((new
ReflectionClass('C'))->getTraits())->getMethod('static_method')->invoke($this);
$returns[] = 'B => ' . current((new
ReflectionClass('C'))->getTraits())->getMethod('static_method')->invoke('B');
$returns[] = 'C => ' . current((new
ReflectionClass('C'))->getTraits())->getMethod('static_method')->invoke('C');
$returns[] = 'A => ' . current((new
ReflectionClass('C'))->getTraits())->getMethod('static_method')->invoke(null);
$returns[] = 'stdClass => ' . current((new
ReflectionClass('C'))->getTraits())->getMethod('static_method')->invoke(new
stdClass);
$returns[] = 'C => ' . current((new
ReflectionClass('C'))->getTraits())->getMethod('static_method')->invokeArgs($this,
array());
$returns[] = 'B => ' . current((new
ReflectionClass('C'))->getTraits())->getMethod('static_method')->invokeArgs('B',
array());
$returns[] = 'C => ' . current((new
ReflectionClass('C'))->getTraits())->getMethod('static_method')->invokeArgs('C',
array());
$returns[] = 'A => ' . current((new
ReflectionClass('C'))->getTraits())->getMethod('static_method')->invokeArgs(null,
array());
$returns[] = 'C => ' . current((new
ReflectionClass('C'))->getTraits())->getMethod('normal_method')->invoke($this);
$returns[] = 'stdClass => ' . current((new
ReflectionClass('C'))->getTraits())->getMethod('normal_method')->invoke(new
stdClass);
$returns[] = 'B => ' . current((new
ReflectionClass('C'))->getTraits())->getMethod('normal_method')->invoke(new
B());
$returns[] = 'C => ' . current((new
ReflectionClass('C'))->getTraits())->getMethod('normal_method_this')->invoke($this);
$returns[] = 'stdClass => ' . current((new
ReflectionClass('C'))->getTraits())->getMethod('normal_method_this')->invoke(new
stdClass());
$returns[] = 'B => ' . current((new
ReflectionClass('C'))->getTraits())->getMethod('normal_method_this')->invoke(new
B());
// Normal methods need an object
//$returns[] = current((new
ReflectionClass('C'))->getTraits())->getMethod('normal_method')->invokeArgs($this,
array());
//$returns[] = current((new
ReflectionClass('C'))->getTraits())->getMethod('normal_method')->invoke('B',
array()); // Error
//$returns[] = current((new
ReflectionClass('C'))->getTraits())->getMethod('normal_method')->invoke('B',
array()); // Error
//$re