Hi, everyone!

I need to do the following:
Let's say I have this class:
class A {
  public function b(array $c, $d = 6) { ... }
}

I need to get this in runtime:
"public function b(array $c, $d = 6)"

What's the best way to do it?
(I don't quite like the idea of reading the file in which the class is defined and it might not always work...)

--
PHP General Mailing List (http://www.php.net/)
To unsubscribe, visit: http://www.php.net/unsub.php

Reply via email to