/ Published in: PHP
Expand |
Embed | Plain Text
<?php class Person { function say_hello(){ echo "Yo Yo Yo"; } } /* //Reveal all the classes that have been defined including what PHP does by default $classes = get_declared_classes(); foreach( $classes as $class ){ echo $class . "<br />"; } */ echo "That class has been defined.<br />"; } else { echo "Class not defined!<br />"; } foreach($methods as $method){ echo $method; } echo "method does exist"; } else { echo "Method does not exist"; } ?>
You need to login to post a comment.
