class toString : toString : Class PHP Source Code


PHP Source Code » Class » toString »

 

class toString



<?php

class Person {
    function getName()  { 
        return "Joe"
    }
    function getAge() { 
        return 31
    }
    function __toString() {
        $desc  = $this->getName()." (age ".
        $desc .= $this->getAge().")";
        return $desc;
    }
}

$person = new Person();
print $person;
?>


           
       



HTML code for linking to this page:

Follow Navioo On Twitter

PHP Source Code

 Navioo Class
» toString