(PECL runkit7 >= Unknown)
runkit7_method_add — Dynamically adds a new method to a given class
class_namemethod_nameargument_listcodemethod_name is calledclosureflagsRUNKIT7_ACC_PUBLIC, RUNKIT7_ACC_PROTECTED or RUNKIT7_ACC_PRIVATE optionally combined via bitwise OR with RUNKIT7_ACC_STATICdoc_commentreturn_typeis_strictstrict_types=1Example #1 runkit7_method_add() example
<?php
class Example {
function foo() {
echo "foo!\n";
}
}
// create an Example object
$e = new Example();
// Add a new public method
runkit7_method_add(
'Example',
'add',
'$num1, $num2',
'return $num1 + $num2;',
RUNKIT7_ACC_PUBLIC
);
// add 12 + 4
echo $e->add(12, 4);
?>The above example will output:
16