get_class
(PHP 4, PHP 5)
get_class -- Returns the name of the class of an object
Beskrivelse
string
get_class ( [object object] )
Gets the name of the class of the given object.
Returneringsværdier
Returns the name of the class of which object is an
instance. Returns FALSE if object is not an
object.
Eksempler
Eksempel 1. Using get_class()
<?php
class foo { function foo() { // implements some logic }
function name() { echo "My name is " , get_class($this) , "\n"; } }
// create an object $bar = new foo();
// external call echo "Its name is " , get_class($bar) , "\n";
// internal call $bar->name();
?>
|
Ovenstående eksempel vil udskrive: Its name is foo
My name is foo |
|