book class : Class Definition « Class « PHP






book class

 
<?php
    class book
    {
        private $title;
        private $isbn;
        private $copies;

        public function __construct($isbn)
        {
            $this->setIsbn($isbn);
            $this->getTitle();
            $this->getNumberCopies();
        }

        public function setIsbn($isbn)
        {
            $this->isbn = $isbn;
        }

        public function getTitle() {
            $this->title = "Python";
            print "Title: ".$this->title."<br />";
        }

        public function getNumberCopies() {
            $this->copies = "5";
            print "Number copies available: ".$this->copies."<br />";
        }
    }

    $book = new book("11111111X");
    ?>
  
  








Related examples in the same category

1.A Basic PHP 4 Class
2.A Basic PHP 5 Class
3.A class is a collection of variables and functions working with these variables.
4.Aggregating an address object
5.Bird class
6.Basic Object Accessing
7.Class Type Hints
8.Implementing a Simple Class
9.Person class
10.PHP class declaration structure
11.Pre-defined methods
12.Using an aggregated class
13.Empty class