Voting

: min(three, four)?
(Example: nine)

The Note You're Voting On

webseiten dot designer at googlemail dot com
14 years ago
Note that the public member $class contains the name of the class in which the method has been defined:

<?php
class A {public function __construct() {}}
class
B extends A {}

$method = new ReflectionMethod('B', '__construct');
echo
$method->class; // prints 'A'
?>

<< Back to user notes page

To Top