RE: [PHP-DEV] Bug in reflectionMethod::getPrototype() ?

2010-08-22 Thread Michel Bartz
, there is no prototype for sayHi(), generating the exception. It explains also why trying to get the prototype on Hello doesn't work. You should get the result you want by doing: echo $reflectionMethod->getDeclaringClass()->getName() . "::" . $reflectionMethod->getName();

[PHP-DEV] RE: Performance of buffer based functionality (JSON, AES, serialize())

2010-11-25 Thread Michel Bartz
, it's not too difficult to get IGBinary setup as serializer instead of the default one, and it does some pretty good improvement. Ever considered making it a part of PHP? What would be the implication (as I'm not too familiar with all the internals of PHP besides extensions...)? Mi