PHP 객체, 모델 및 실습의 고급 기능

15138 단어 PHP
고급 기능: 1.정적 방법과 속성(대상이 아닌 클래스를 통해 데이터와 기능에 접근)2.추상류와 인터페이스(디자인, 분리 실현) 3.오류 처리 (예외) 4.Final 클래스 및 메서드(상속 제한) 5.차단기(자동 의뢰) 6.분석 방법(대상 소각 전의 정리 작업) 7.클론 객체(객체의 복사본 생성)8.대상을 문자열 PS로 해석하여 메모리의 측면에서 코드를 보는 것을 배웁니다.컴퓨터의 미시적 세계를 상상하다.
정적 방법의 작은 예
<?php
class StaticExample{
    static public $aNum = 10;
    static public function sayHello(){
        print "hello";
    }
}
print StaticExample::$aNum."<br/>";
StaticExample::sayHello();

tips:1.정적 방법은 클래스의 일반 속성에 접근할 수 없습니다. 왜냐하면 그 속성들은 하나의 대상에 속하지만 정적 속성에 접근할 수 있기 때문입니다.2. 우리는 대상에서 정적 방법을 사용할 수 없기 때문에 정적 방법에서 위조 변수 $this를 사용할 수 없습니다.
정적 방법의 큰 예
<?php
class ShopProduct{
    private $title;
    private $producerMainName;
    private $producerFirstName;
    protected $price;
    private $discount = 0;
    private $id = 0;
    function __construct($title,$firstName,$mainName,$price){
        $this->title = $title;
        $this->producerFirstName = $firstName;
        $this->producerMainName = $mainName;
        $this->price = $price;
    }


    public function setID($id){
        $this->id = $id;
    }
    public static function getInstance($id,PDO $pdo){
        $query = "select * from products where id= '$id'"; $stmt = $pdo->query($query); $row = $stmt->fetch(); if(empty($row)){ return null;
        }
        if($row['type'] == "book"){
            $product = new BookProduct($row['title'],
                $row['firstname'],
                $row['mainname'],
                $row['price'],
                $row['numpages']
                );
        }else if($row['type'] == "cd"){
            $product = new CdProduct($row['title'],
                $row['firstname'],
                $row['mainname'],
                $row['price'],
                $row['playLength']
                );
        }else{
            $product = new ShopProduct($row['title'],
                $row['firstname'],
                $row['mainname'],
                $row['price']
                );
        }
        $product->setId($row['id']);
        $product->setDiscount($row['discount']);
        return $product;
    }

    public function getProducerFirstName(){
        return $this->producerFirstName;
    }

    public function getProducerMainName(){
        return $this->producerMainName;
    }

    public function setDiscount($num){
        $this->discount = $num;
    }

    public function getDiscount(){
        return $this->discount;
    }

    public function getTitle(){
        return $this->title;
    }

    public function getPrice(){
        return ($this->price - $this->discount);
    }

    function getProducer(){
        return $this->producerFirstName." ".$this->producerMainName;
    }

    function getSummaryLine(){
        $base = "$this->title({$this->producerMainName},";
        $base .= "{$this->producerFirstName})";
        return $base;
    }
}

class CdProduct extends ShopProduct{
    private $playLength;
    function __construct($title,$firstName,$mainName,$price,$playLength){
        parent::__construct($title,$firstName,$mainName,$price);//         
        $this->playLength = $playLength;
    }

    function getPlayLength(){
        return $this->playLength;
    }

    function getSummaryLine(){
        $base = parent::getSummaryLine();
        $base .= ":playing time {$this->playLength}";
        return $base;
    }
}

class BookProduct extends ShopProduct{
    private $numPages = 0;
    function __construct($title,$firstName,$mainName,$price,$numPages){
        parent::__construct($title,$firstName,$mainName,$price);
        $this->numPages = $numPages;
    }
    function getnumPages(){
        return $this->numPages;
    }

    function getSummaryLine(){
        $base = parent::getSummaryLine();
        $base .= ":page count {$this->numPages}";
        return $base;
    }
}

$dsn = "sqlite:C:/Users/Administrator/Desktop/shop.db"; $pdo = new PDO($dsn,null,null); $pdo->setAttribute(PDO::ATTR_ERRMODE,PDO::ERRMODE_EXCEPTION); $obj = ShopProduct::getInstance(1,$pdo); echo $obj->getSummaryLine();

좋은 웹페이지 즐겨찾기