网络编程
位置:首页>> 网络编程>> php编程>> PHP面向对象程序设计之类与反射API详解

PHP面向对象程序设计之类与反射API详解

作者:牛逼的霍啸林  发布时间:2023-11-19 12:44:12 

标签:PHP,面向对象,类,反射API

本文实例讲述了PHP面向对象程序设计之类与反射API。分享给大家供大家参考,具体如下:

了解类

class_exists验证类是否存在


<?php
// TaskRunner.php
$classname = "Task";
$path = "tasks/{$classname}.php";
if ( ! file_exists( $path ) ) {
 throw new Exception( "No such file as {$path}" ); //抛出异常,类文件不存在
}
require_once( $path );
$qclassname = "tasks\\$classname";
if ( ! class_exists( $qclassname ) ) {
 throw new Exception( "No such class as $qclassname" ); //抛出异常,类不存在Fatal error: Uncaught exception 'Exception' with message 'No such class as tasks\Task'
Stack trace:
#0 {main}
}
$myObj = new $qclassname();
$myObj->doSpeak();
?>

get_class 检查对象的类 instanceof 验证对象是否属于某个类


<?php
class CdProduct {}
function getProduct() {
 return new CdProduct(  "Exile on Coldharbour Lane",
               "The", "Alabama 3", 10.99, 60.33 ); // 返回一个类对象
}
$product = getProduct();
if ( get_class( $product ) == 'CdProduct' ) {
 print "\$product is a CdProduct object\n";
}
?>
<?php
class CdProduct {}
function getProduct() {
 return new CdProduct(  "Exile on Coldharbour Lane",
               "The", "Alabama 3", 10.99, 60.33 );
}
$product = getProduct();
if ( $product instanceof CdProduct ) {
 print "\$product is a CdProduct object\n";
}
?>

get_class_methods 得到类中所有的方法列表,只获取public的方法,protected,private的方法获取不到。默认的就是public。


<?php
class CdProduct {
 function __construct() { }
 function getPlayLength() { }
 function getSummaryLine() { }
 function getProducerFirstName() { }
 function getProducerMainName() { }
 function setDiscount() { }
 function getDiscount() { }
 function getTitle() { }
 function getPrice() { }
 function getProducer() { }
}
print_r( get_class_methods( 'CdProduct' ) );
?>

output:


Array
(
 [0] => __construct
 [1] => getPlayLength
 [2] => getSummaryLine
 [3] => getProducerFirstName
 [4] => getProducerMainName
 [5] => setDiscount
 [6] => getDiscount
 [7] => getTitle
 [8] => getPrice
 [9] => getProducer
)

更多验证


<?php
class ShopProduct {}
interface incidental {};
class CdProduct extends ShopProduct implements incidental {
 public $coverUrl;
 function __construct() { }
 function getPlayLength() { }
 function getSummaryLine() { }
 function getProducerFirstName() { }
 function getProducerMainName() { }
 function setDiscount() { }
 function getDiscount() { }
 function getTitle() { return "title\n"; }
 function getPrice() { }
 function getProducer() { }
}
function getProduct() {
 return new CdProduct();
}
$product = getProduct(); // acquire an object
$method = "getTitle";   // define a method name
print $product->$method(); // invoke the method
if ( in_array( $method, get_class_methods( $product ) ) ) {
 print $product->$method(); // invoke the method
}
if ( is_callable( array( $product, $method) ) ) {
 print $product->$method(); // invoke the method
}
if ( method_exists( $product, $method ) ) {
 print $product->$method(); // invoke the method
}
print_r( get_class_vars( 'CdProduct' ) );
if ( is_subclass_of( $product, 'ShopProduct' ) ) {
 print "CdProduct is a subclass of ShopProduct\n";
}
if ( is_subclass_of( $product, 'incidental' ) ) {
 print "CdProduct is a subclass of incidental\n";
}
if ( in_array( 'incidental', class_implements( $product )) ) {
 print "CdProduct is an interface of incidental\n";
}
?>

output:


title
title
title
title
Array
(
 [coverUrl] =>
)
CdProduct is a subclass of ShopProduct
CdProduct is a subclass of incidental
CdProduct is an interface of incidental

__call方法


<?php
class OtherShop {
 function thing() {
   print "thing\n";
 }
 function andAnotherthing() {
   print "another thing\n";
 }
}
class Delegator {
 private $thirdpartyShop;
 function __construct() {
   $this->thirdpartyShop = new OtherShop();
 }
 function __call( $method, $args ) { // 当调用未命名方法时执行call方法
   if ( method_exists( $this->thirdpartyShop, $method ) ) {
     return $this->thirdpartyShop->$method( );
   }
 }
}
$d = new Delegator();
$d->thing();
?>

output:

thing

传参使用


<?php
class OtherShop {
 function thing() {
   print "thing\n";
 }
 function andAnotherthing( $a, $b ) {
   print "another thing ($a, $b)\n";
 }
}
class Delegator {
 private $thirdpartyShop;
 function __construct() {
   $this->thirdpartyShop = new OtherShop();
 }
 function __call( $method, $args ) {
   if ( method_exists( $this->thirdpartyShop, $method ) ) {
     return call_user_func_array(
           array( $this->thirdpartyShop,
             $method ), $args );
   }
 }
}
$d = new Delegator();
$d->andAnotherThing( "hi", "hello" );
?>

output:

another thing (hi, hello)

反射API

fullshop.php


<?php
class ShopProduct {
 private $title;
 private $producerMainName;
 private $producerFirstName;
 protected $price;
 private $discount = 0;
 public function __construct(  $title, $firstName,
             $mainName, $price ) {
   $this->title       = $title;
   $this->producerFirstName = $firstName;
   $this->producerMainName = $mainName;
   $this->price       = $price;
 }
 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);
 }
 public function getProducer() {
   return "{$this->producerFirstName}".
       " {$this->producerMainName}";
 }
 public function getSummaryLine() {
   $base = "{$this->title} ( {$this->producerMainName}, ";
   $base .= "{$this->producerFirstName} )";
   return $base;
 }
}
class CdProduct extends ShopProduct {
 private $playLength = 0;
 public function __construct(  $title, $firstName,
             $mainName, $price, $playLength=78 ) {
   parent::__construct(  $title, $firstName,
               $mainName, $price );
   $this->playLength = $playLength;
 }
 public function getPlayLength() {
   return $this->playLength;
 }
 public function getSummaryLine() {
   $base = parent::getSummaryLine();
   $base .= ": playing time - {$this->playLength}";
   return $base;
 }
}
class BookProduct extends ShopProduct {
 private $numPages = 0;
 public function __construct(  $title, $firstName,
             $mainName, $price, $numPages ) {
   parent::__construct(  $title, $firstName,
               $mainName, $price );
   $this->numPages = $numPages;
 }
 public function getNumberOfPages() {
   return $this->numPages;
 }
 public function getSummaryLine() {
   $base = parent::getSummaryLine();
   $base .= ": page count - {$this->numPages}";
   return $base;
 }
 public function getPrice() {
   return $this->price;
 }
}
/*
$product1 = new CdProduct("cd1", "bob", "bobbleson", 4, 50 );
print $product1->getSummaryLine()."\n";
$product2 = new BookProduct("book1", "harry", "harrelson", 4, 30 );
print $product2->getSummaryLine()."\n";
*/
?>
<?php
require_once "fullshop.php";
$prod_class = new ReflectionClass( 'CdProduct' );
Reflection::export( $prod_class );
?>

output:


Class [ <user> class CdProduct extends ShopProduct ] {
@@ D:\xampp\htdocs\popp-code\5\fullshop.php 53-73
- Constants [0] {
}
- Static properties [0] {
}
- Static methods [0] {
}
- Properties [2] {
 Property [ <default> private $playLength ]
 Property [ <default> protected $price ]
}
- Methods [10] {
 Method [ <user, overwrites ShopProduct, ctor> public method __construct ] {
  @@ D:\xampp\htdocs\popp-code\5\fullshop.php 56 - 61
  - Parameters [5] {
   Parameter #0 [ <required> $title ]
   Parameter #1 [ <required> $firstName ]
   Parameter #2 [ <required> $mainName ]
   Parameter #3 [ <required> $price ]
   Parameter #4 [ <optional> $playLength = 78 ]
  }
 }
 Method [ <user> public method getPlayLength ] {
  @@ D:\xampp\htdocs\popp-code\5\fullshop.php 63 - 65
 }
 Method [ <user, overwrites ShopProduct, prototype ShopProduct> public method getSummaryLine ] {
  @@ D:\xampp\htdocs\popp-code\5\fullshop.php 67 - 71
 }
 Method [ <user, inherits ShopProduct> public method getProducerFirstName ] {
  @@ D:\xampp\htdocs\popp-code\5\fullshop.php 17 - 19
 }
 Method [ <user, inherits ShopProduct> public method getProducerMainName ] {
  @@ D:\xampp\htdocs\popp-code\5\fullshop.php 21 - 23
 }
 Method [ <user, inherits ShopProduct> public method setDiscount ] {
  @@ D:\xampp\htdocs\popp-code\5\fullshop.php 25 - 27
  - Parameters [1] {
   Parameter #0 [ <required> $num ]
  }
 }
 Method [ <user, inherits ShopProduct> public method getDiscount ] {
  @@ D:\xampp\htdocs\popp-code\5\fullshop.php 29 - 31
 }
 Method [ <user, inherits ShopProduct> public method getTitle ] {
  @@ D:\xampp\htdocs\popp-code\5\fullshop.php 33 - 35
 }
 Method [ <user, inherits ShopProduct> public method getPrice ] {
  @@ D:\xampp\htdocs\popp-code\5\fullshop.php 37 - 39
 }
 Method [ <user, inherits ShopProduct> public method getProducer ] {
  @@ D:\xampp\htdocs\popp-code\5\fullshop.php 41 - 44
 }
}
}

点评:把类看的透彻的一塌糊涂,比var_dump强多了。哪些属性,继承了什么类。类中的方法哪些是自己的,哪些是重写的,哪些是继承的,一目了然。

查看类数据


<?php
require_once("fullshop.php");
function classData( ReflectionClass $class ) {
$details = "";
$name = $class->getName();
if ( $class->isUserDefined() ) {
 $details .= "$name is user defined\n";
}
if ( $class->isInternal() ) {
 $details .= "$name is built-in\n";
}
if ( $class->isInterface() ) {
 $details .= "$name is interface\n";
}
if ( $class->isAbstract() ) {
 $details .= "$name is an abstract class\n";
}
if ( $class->isFinal() ) {
 $details .= "$name is a final class\n";
}
if ( $class->isInstantiable() ) {
 $details .= "$name can be instantiated\n";
} else {
 $details .= "$name can not be instantiated\n";
}
return $details;
}
$prod_class = new ReflectionClass( 'CdProduct' );
print classData( $prod_class );
?>

output:

CdProduct is user defined
CdProduct can be instantiated

查看方法数据


<?php
require_once "fullshop.php";
$prod_class = new ReflectionClass( 'CdProduct' );
$methods = $prod_class->getMethods();
foreach ( $methods as $method ) {
print methodData( $method );
print "\n----\n";
}
function methodData( ReflectionMethod $method ) {
$details = "";
$name = $method->getName();
if ( $method->isUserDefined() ) {
 $details .= "$name is user defined\n";
}
if ( $method->isInternal() ) {
 $details .= "$name is built-in\n";
}
if ( $method->isAbstract() ) {
 $details .= "$name is abstract\n";
}
if ( $method->isPublic() ) {
 $details .= "$name is public\n";
}
if ( $method->isProtected() ) {
 $details .= "$name is protected\n";
}
if ( $method->isPrivate() ) {
 $details .= "$name is private\n";
}
if ( $method->isStatic() ) {
 $details .= "$name is static\n";
}
if ( $method->isFinal() ) {
 $details .= "$name is final\n";
}
if ( $method->isConstructor() ) {
 $details .= "$name is the constructor\n";
}
if ( $method->returnsReference() ) {
 $details .= "$name returns a reference (as opposed to a value)\n";
}
return $details;
}
?>

output:


__construct is user defined
__construct is public
__construct is the constructor
----
getPlayLength is user defined
getPlayLength is public
----
getSummaryLine is user defined
getSummaryLine is public
----
getProducerFirstName is user defined
getProducerFirstName is public
----
getProducerMainName is user defined
getProducerMainName is public
----
setDiscount is user defined
setDiscount is public
----
getDiscount is user defined
getDiscount is public
----
getTitle is user defined
getTitle is public
----
getPrice is user defined
getPrice is public
----
getProducer is user defined
getProducer is public

获取构造函数参数情况


<?php
require_once "fullshop.php";
$prod_class = new ReflectionClass( 'CdProduct' );
$method = $prod_class->getMethod( "__construct" );
$params = $method->getParameters();
foreach ( $params as $param ) {
 print argData( $param )."\n";
}
function argData( ReflectionParameter $arg ) {
$details = "";
$declaringclass = $arg->getDeclaringClass();
$name = $arg->getName();
$class = $arg->getClass();
$position = $arg->getPosition();
$details .= "\$$name has position $position\n";
if ( ! empty( $class ) ) {
 $classname = $class->getName();
 $details .= "\$$name must be a $classname object\n";
}
if ( $arg->isPassedByReference() ) {
 $details .= "\$$name is passed by reference\n";
}
if ( $arg->isDefaultValueAvailable() ) {
 $def = $arg->getDefaultValue();
 $details .= "\$$name has default: $def\n";
}
if ( $arg->allowsNull() ) {
 $details .= "\$$name can be null\n";
}
return $details;
}
?>

output:


$title has position 0
$title can be null
$firstName has position 1
$firstName can be null
$mainName has position 2
$mainName can be null
$price has position 3
$price can be null
$playLength has position 4
$playLength has default: 78
$playLength can be null

希望本文所述对大家PHP程序设计有所帮助。

0
投稿

猜你喜欢

  • 好几年前我在做一些自动化的脚本时,脑子里也闪过这样的想法:能不能直接把浏览器的cookies取出来用呢?直到昨天看到代码《python模拟发
  • 看书笔记db file scattered read DB ,db file sequential read DB,free buffer
  • 就是在mysql命令行登录的时候加上: --pager=more 参数可以使用linux下的more来分页,很好用
  •  代码如下:---这是一个人事系统中的示例,要求记录一下员工的缺勤情况 ---1.要在表中记录一下缺勤计分,是对经常缺勤者的一种处
  • PHP _construct() 函数实例函数创建一个新的 SimpleXMLElement 对象,然后输出 body 节点的内容:<
  • l当今世界,技术发展迅猛,不论是什么行业,大多数关键数据都是放置于数据库中进行管理的,一来目前数据库技术已经相当成熟,二来其管理功能非常强大
  •  分页显示是页面常用技术,可用下列代码来实现:<%page=Request.QueryString("page&q
  • 内容摘要:通常的,ASP中表单提交的数据一般被写入数据库。然而,如果你想让发送数据更为简便易行,那么,可以将它书写为XML文件格式。这种方式
  • 在所有信息技术领域,网页设计、网站设计长期是个几乎搞不清楚的、弱势的、被边缘化的职能职位。但近些年发展中,不断有远见卓识的从业者认识到,“设
  • 如何为XHTML做好准备,XHTML与HTML 4.01标准没有太多的不同。所以将你的代码升级至4.01是个不错的开始。HTML 4.01参
  • 我们知道,数组的sort方法可以对数组元素进行排序,默认是按ASCII字母表顺序排序。如果要根据其他的顺序排序就需要为sort方法提供一个比
  • 我们先看一下淘宝的页面:这么一个庞然大物,该怎么切图呢?显然按照给出的方法也可以完成这项任务,但是做为前端开发的我们是否应该给自己提出更高的
  • 内容概要:print() 是一个常用函数。那么,您是否注意过,print() 会在显示当前语句后换行。如果遇到需要连续显示、不换行的情况,比
  • 在ASP编程中,身份认证可以说是常要用到的。但怎么样才能做到认证的安全呢?表单提交页面:sub.htm   &
  • 本站收集的js实现的同步动态显示当前日期,时间和星期几的代码,我经常用在自己做的企业网站的后台,方便嘛。效果可以看看本站的首页,呵呵!而且代
  • 描述:让Len,Left,Right函数识别中文;对中文识别为两个字符,ASCII码为一个;可用此函数代替Len,Left,Right函数。
  • 一个是没有对输入的数据进行过滤(过滤输入),还有一个是没有对发送到数据库的数据进行转义(转义输出)。这两个重要的步骤缺一不可,需要同时加以特
  • 前言写过 CLI 常驻进程的老司机肯定遇到过这么一个问题:在需要更新程序的时候,我要怎样才能安全关闭老进程?你可能会想到 NGIN
  • 昨天群里介绍了一个专门帮你PS图片的网站。吐司网。网站在图片的预览处理上有点意思。当鼠标经过图片,显示为处理过的图片。这样大家能很清晰的对比
  • 熟悉 C 语言的小伙伴一定对 goto 语句不陌生,它可以在代码之间随意的跳来跳去,但是好多老鸟都告诫大家,不要使用 goto,因为 got
手机版 网络编程 asp之家 www.aspxhome.com