ReflectionMethod::invoke - PHP - Programmation
Marsh Posté le 30-12-2009 à 11:51:11
salut, dans la doc on voit: http://be.php.net/manual/fr/reflec [...] invoke.php public mixed ReflectionMethod::invoke ( object $object , string $args ) mon problème est dans $args ça doit dont etre un string qui comprend tous les args, soit un truc du genre : '1,,,,,0,-1,0' mais quand on fait : $rm->invoke($object,$args); il fait en fait: $object->function('1,,,,,0,-1,0'); au lieu de: $object->function(1,,,,,0,-1,0); C'est un bug ou moi qui fait une bêtise ?
Marsh Posté le 30-12-2009 à 13:39:34
Bon alors en fait il faut utiliser ReflectionMethod::invokeArgs ( string $object , array $args )
Make sure you enter the(*)required information where indicate.HTML code is not allowed
Marsh Posté le 30-12-2009 à 11:51:11
salut,
dans la doc on voit:
http://be.php.net/manual/fr/reflec [...] invoke.php
public mixed ReflectionMethod::invoke ( object $object , string $args )
mon problème est dans $args
ça doit dont etre un string qui comprend tous les args, soit un truc du genre : '1,,,,,0,-1,0'
mais quand on fait :
$rm->invoke($object,$args);
il fait en fait:
$object->function('1,,,,,0,-1,0');
au lieu de:
$object->function(1,,,,,0,-1,0);
C'est un bug ou moi qui fait une bêtise ?