First, use
Then, pass that
get_class
to get the name of an object's class.<?php $class_name = get_class($object); ?>
get_class_methods
to get a list of all the callable methods on an object<?php
$class_name = get_class($object);
$methods = get_class_methods($class_name);
foreach($methods as $method)
{
var_dump($method);
}
?>
No comments:
Post a Comment