温馨提示×

温馨提示×

您好,登录后才能下订单哦!

密码登录×
登录注册×
其他方式登录
点击 登录注册 即表示同意《亿速云用户服务条款》

PHP中高级特性有哪些

发布时间:2021-09-01 10:54:56 来源:亿速云 阅读:125 作者:小新 栏目:开发技术

这篇文章主要介绍了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();

感谢你能够认真阅读完这篇文章,希望小编分享的“PHP中高级特性有哪些”这篇文章对大家有帮助,同时也希望大家多多支持亿速云,关注亿速云行业资讯频道,更多相关知识等着你来学习!

向AI问一下细节

免责声明:本站发布的内容(图片、视频和文字)以原创、转载和分享为主,文章观点不代表本网站立场,如果涉及侵权请联系站长邮箱:is@yisu.com进行举报,并提供相关证据,一经查实,将立刻删除涉嫌侵权内容。

php
AI