Category Archives: php

PHP Class

Constructor <?php class Bird { // Constructor function __construct($name, $breed, $price){ $this->name = $name; $this->breed = $breed; $this->price = $price; }   function testAll(){ $this->testConstructor(); }   function testConstructor(){ // Usage $tweedy = new Bird(’Tweedy’,’canary’,15); echo $tweedy->name; } } $bird … Continue reading

Posted in php | Leave a comment