欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

PHP面向?qū)ο蟪绦蛟O(shè)計(jì)方法實(shí)例詳解

 更新時間:2016年12月24日 10:27:17   作者:trace332  
這篇文章主要介紹了PHP面向?qū)ο蟪绦蛟O(shè)計(jì)方法,結(jié)合實(shí)例形式詳細(xì)分析了php面向?qū)ο蟪绦蛟O(shè)計(jì)中所涉及的類的概念、定義、構(gòu)造函數(shù)、析構(gòu)函數(shù)、繼承、重載、接口、抽象類等概念與使用技巧,需要的朋友可以參考下

本文實(shí)例分析了PHP面向?qū)ο蟪绦蛟O(shè)計(jì)方法。分享給大家供大家參考,具體如下:

PHP5開始支持面向?qū)ο螅纠缦拢?#65279;

<?php
class classname{
  var $attr1;
  var $attr2;
  public $attribute;
  const PI = 3.14;
  // 構(gòu)造函數(shù)
  function __construct($param = 'default'){
    echo "Constructor called with parameter $param<br />";
  }
  // 析構(gòu)函數(shù)
  function __destruct(){
    echo '<br />destruct';
  }
  //
  function oper1(){
    echo 'oper1<br />';
  }
  function oper2($param){
    $this->attr1 = $param;
    echo $this->attr1;
  }
  protected function oper3(){
    echo 'this is protected function<br />';
  }
  // 禁止繼承
  final function oper5(){
  }
  function __get($name){
    return $this->$name;
  }
  function __set($name, $value){
    $this->$name = $value;
  }
  // 靜態(tài)方法
  static function double($param){
    return $param * $param;
  }
}
$a = new classname('First');
$b = new classname('Second');
$c = new classname();
$c->oper2("hello");
echo '<br />';
echo $c->attr1;
echo '<br /><br />';
echo ' Per-Class常量 classname::PI -'.classname::PI;
echo '<br />靜態(tài)方法: classname::double(3) - ' . classname::double(3);
echo '<br />';
// 實(shí)現(xiàn)繼承
echo '實(shí)現(xiàn)繼承<br />';
class B extends classname{
  function oper4(){
    $this->oper3(); // protected方法只能在
  }
  function oper1(){ // 重載
    echo 'this is class B /'s oper1. <br />';
  }
}
$d = new B("forth");
$d->oper1();
$d->oper4();
// 接口
interface Displayable
{
  function display();
  function show();
}
class C implements Displayable
{
  function display(){
    echo '這是對應(yīng)接口的方法.<br />';
  }
  function show(){}
}
$e = new C();
$e->display();
echo '檢查$e是否為C的實(shí)例:';
echo ($e instanceof C) ? 'Yes':'No';
// 克隆對象
$f = clone $e;
echo '<br /><br />可以使用__clone()方法,在使用clone關(guān)鍵字時調(diào)用';
// 抽象類
abstract class E{}
// $f = new E(); // 這行將報(bào)錯,不能實(shí)例化抽象類
// 參數(shù)重載,多態(tài)
class F{
  public $a = 1;
  public $b = 2;
  public $c = 3;
  function displayString($elem){
    echo '<br />string:'.$elem;
  }
  function displayInt($elem){
    echo '<br />int:'.$elem;
  }
  // 注意參數(shù)$p,是作為數(shù)組傳入,必須使用下標(biāo)訪問
  function __call($method, $p){
    if ($method == 'display'){
      if (is_string($p[0])){
        $this->displayString($p[0]);
      } else {
        $this->displayInt($p[0]);
      }
    }
  }
}
$g = new F();
$g->display('abc');
// 迭代器,讀出實(shí)例的所有屬性
foreach ($g as $att){
  echo '<br />'.$att;
}
// 反射
echo '<br />';
$class = new ReflectionClass('F');
echo '<pre>';
echo $class;
echo '</pre>';
?>

更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php面向?qū)ο蟪绦蛟O(shè)計(jì)入門教程》、《PHP基本語法入門教程》、《PHP運(yùn)算與運(yùn)算符用法總結(jié)》、《PHP網(wǎng)絡(luò)編程技巧總結(jié)》、《PHP數(shù)組(Array)操作技巧大全》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總

希望本文所述對大家PHP程序設(shè)計(jì)有所幫助。

相關(guān)文章

  • PHP向socket服務(wù)器收發(fā)數(shù)據(jù)的方法

    PHP向socket服務(wù)器收發(fā)數(shù)據(jù)的方法

    這篇文章主要介紹了PHP向socket服務(wù)器收發(fā)數(shù)據(jù)的方法,分析了socket收發(fā)數(shù)據(jù)的方法,并介紹了socket常用函數(shù),需要的朋友可以參考下
    2015-01-01
  • php 批量生成html,txt文件的實(shí)現(xiàn)代碼

    php 批量生成html,txt文件的實(shí)現(xiàn)代碼

    本篇文章是對使用php批量生成html,txt文件的實(shí)現(xiàn)代碼進(jìn)行了詳細(xì)的分析介紹,需要的朋友參考下
    2013-06-06
  • PHP+MySQL實(shí)現(xiàn)輸入頁碼跳轉(zhuǎn)到指定頁面功能示例

    PHP+MySQL實(shí)現(xiàn)輸入頁碼跳轉(zhuǎn)到指定頁面功能示例

    這篇文章主要介紹了PHP+MySQL實(shí)現(xiàn)輸入頁碼跳轉(zhuǎn)到指定頁面功能,結(jié)合實(shí)例形式分析了php連接mysql數(shù)據(jù)庫進(jìn)行數(shù)據(jù)查詢及分頁顯示、指定頁數(shù)跳轉(zhuǎn)顯示等相關(guān)操作技巧,需要的朋友可以參考下
    2018-06-06
  • Web端測試PHP代碼函數(shù)覆蓋率解決方案

    Web端測試PHP代碼函數(shù)覆蓋率解決方案

    這篇文章主要為大家介紹了Web端測試PHP代碼函數(shù)覆蓋率解決方案,有需要的朋友可以借鑒參考下,希望能夠有所幫助,祝大家多多進(jìn)步早日升職加薪
    2022-04-04
  • PHP的runkit擴(kuò)展如何使用

    PHP的runkit擴(kuò)展如何使用

    PHP 運(yùn)行的時候,也就是部署完成后,我們是不能修改常量的值,也不能修改方法體內(nèi)部的實(shí)現(xiàn)的。也就是說,我們編碼完成后,將代碼上傳到服務(wù)器,這時候,我們想在不修改代碼的情況去修改一個常量的值是不行的。但是,runkit 擴(kuò)展卻可以幫助我們完成這個功能。
    2021-05-05
  • PHP獲取數(shù)組的鍵與值方法小結(jié)

    PHP獲取數(shù)組的鍵與值方法小結(jié)

    這篇文章主要介紹了PHP獲取數(shù)組的鍵與值方法,實(shí)例總結(jié)了key()、current()、each()、list()等方法的相關(guān)使用技巧,需要的朋友可以參考下
    2015-06-06
  • php json中文編碼為null的解決辦法

    php json中文編碼為null的解決辦法

    這篇文章主要介紹了php json中文編碼為null的解決辦法,需要的朋友可以參考下
    2016-12-12
  • Array of country list in PHP with Zend Framework

    Array of country list in PHP with Zend Framework

    Array of country list in PHP with Zend Framework,需要的朋友可以參考下。
    2011-10-10
  • IIS下PHP的三種配置方式對比

    IIS下PHP的三種配置方式對比

    本文對比分析了IIS下配置php的三種配置方式,以及這三種方式配置的區(qū)別和性能差異。
    2014-11-11
  • PHP中你可能忽略的性能優(yōu)化利器:生成器

    PHP中你可能忽略的性能優(yōu)化利器:生成器

    性能優(yōu)化是我們開發(fā)中必不可少的一部分,下面這篇文章主要給大家介紹了關(guān)于PHP中你可能忽略的性能優(yōu)化利器:生成器的相關(guān)資料,文中通過示例代碼介紹的非常詳細(xì),需要的朋友可以參考借鑒,下面來一起看看吧。
    2017-12-12

最新評論