s_a is a class instance : instance of : Class PHP Source Code


PHP Source Code » Class » instance of »

 

s_a is a class instance




<?php
class Person {
    private $name;    
    private $age;    
    private $id;    

    function __construct$name, $age ) {
        $this->name = $name;
        $this->age = $age;
    }

    function setId$id ) {
        $this->id = $id;
    }
    
    function __clone() {
        $this->id = 0;
    }
}
$p = new Person("A",10);
if is_a$p, 'Person' )  ) {
    print "$p is a Person objectn";
}

?>

           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Class
» instance of