get_class -- Returns the name of the class of an object
Syntax
string get_class ( object obj )
This function returns the name of the class of which the
object obj is an instance. Returns
FALSE if obj is not an object.
Note:
A class defined in a PHP extension is returned in its original notation.
In PHP 4 get_class() returns a user defined class
name in lowercase, but in PHP 5 it will return the class name in it's
original notation too, just like class names from PHP extensions.
Example 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";
get class php code on this is provided for your study purpose, it will guide you to know how create and design a website using php. use it to practice and train your self online
Php get class syntax tutorial
php tutorial guide and code design are for easy learning and programming. The code practice section provided at the top is for practising of this syntax. Use the code section up to practice your php programming online. Learning php is very easy, all you need is to use the examples on this site and practice them to perfect your skills.