<?php
// file: newclass.php
class Example {
function foo() {
return "bar!\n";
}
}
?>
<?php
// requires newclass.php (see above)
class Example {
function foo() {
return "foo!\n";
}
}
$e = new Example();
// output original
echo $e->foo();
// import replacement method
classkit_import('newclass.php');
// output imported
echo $e->foo();
?>
The above example will output: