程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> PHP 類的一些知識點

PHP 類的一些知識點

編輯:關於PHP編程

PHP 類的一些知識點


1.類的定義

items[$artnr += $num;
   }
}

不能將一個類分開定義在多個文件,也不能將類定義分到多個PHP塊(函數內部可以分)。
不能定義名為以下的類:
stdClass
__sleep
__wakeup
事實上不要以__開頭定義類。

2.構造函數

class Cart {
    var $todays_date;
    var $name;
    var $owner;
    var $items = array(VCR, TV);
    function Cart() {
        $this->todays_date = date(Y-m-d);
        $this->name = $GLOBALS['firstname'];
        /* etc. . . */
    }
}

類如果沒有構造函數,將調用基類構造函數。
構造函數參數可以賦默認值

add_item ($item, $num);
    }
}

// 買些同樣的無聊老貨
$default_cart = new Constructor_Cart;
// 買些實在貨...
$different_cart = new Constructor_Cart(20, 17);
?>

@new 可以抑制發生在構造函數中的錯誤。

3.類的使用

$cart = new Cart;
$cart->add_item(10, 1);

類內部使用$this代表自身。

4.類相關函數

__autoload — 嘗試加載未定義的類
call_user_method_array — 調用一個用戶方法,同時傳遞參數數組(已廢棄)
call_user_method — 對特定對象調用用戶方法(已廢棄)
class_alias — 為一個類創建別名
class_exists — 檢查類是否已定義
get_called_class — 後期靜態綁定(”Late Static Binding”)類的名稱
get_class_methods — 返回由類的方法名組成的數組
get_class_vars — 返回由類的默認屬性組成的數組
get_class — 返回對象的類名
get_declared_classes — 返回由已定義類的名字所組成的數組
get_declared_interfaces — 返回一個數組包含所有已聲明的接口
get_declared_traits — 返回所有已定義的 traits 的數組
get_object_vars — 返回由對象屬性組成的關聯數組
get_parent_class — 返回對象或類的父類名
interface_exists — 檢查接口是否已被定義
is_a — 如果對象屬於該類或該類是此對象的父類則返回 TRUE
is_subclass_of — 如果此對象是該類的子類,則返回 TRUE
method_exists — 檢查類的方法是否存在
property_exists — 檢查對象或類是否具有該屬性
trait_exists — 檢查指定的 trait 是否存在

5.繼承

owner = $name;
    }
}
?>

PHP不支持多繼承。

6.靜態方法


;
    }
}

class B extends A {
    function example() {
        echo I am the redefined function B::example().

;
        A::example();
    }
}

// A 類沒有對象,這將輸出
//   I am the original function A::example().

A::example();

// 建立一個 B 類的對象
$b = new B;

// 這將輸出
//   I am the redefined function B::example().

//   I am the original function A::example().

$b->example();
?>

7.基類引用 parent


;
    }
}

class B extends A {
    function example() {
        echo I am B::example() and provide additional functionality.

;
        parent::example();
    }
}

$b = new B;

// 這將調用 B::example(),而它會去調用 A::example()。
$b->example();
?>

8.序列化

one;
      }
  }

// page1.php:
  include(classa.inc);

  $a = new A;
  $s = serialize($a);
  // 將 $s 存放在某處使 page2.php 能夠找到
  $fp = fopen(store, w);
  fwrite($fp, $s);
  fclose($fp);

// page2.php:
  // 為了正常解序列化需要這一行
  include(classa.inc);

  $s = implode(, @file(store));
  $a = unserialize($s);

  // 現在可以用 $a 對象的 show_one() 函數了
  $a->show_one();
?>

9.魔術函數 __sleep __wakeup

10.允許數組方式訪問對象屬性

方法1

function obj2array(obj){
return new ArrayObject(obj, ArrayObject::ARRAY_AS_PROPS);
}
這個方法比較簡單,另一個方法要繼承ArrayAccess要復雜一點。

11.數組轉對象

    /**
     * 數組轉對象
     * @param unknown $e
     * @return void|StdClass
     */
    public static function arrayToObject($e){
        if( gettype($e)!='array' ) return;
        foreach($e as $k=>$v){
            if( gettype($v)=='array' || getType($v)=='object' )
                $e[$k]=(object)arrayToObject($v);
        }
        return (object)$e;
    }

12 自己實現的序列化與反序列化

用在redis時比較方便:

    /**
     * 序列化對象,返回$json字符串
     */
    public static function serialize($model){
        //return serialize($model);
        if(!$model)return '{}';
        $json='{';
        foreach($model as $key2=>$value2){
            if($json!='{')$json.=',';
            $json.=$key2:$value2;
        }
        $json.='}';


        return $json;
    }
    public static function unserialize($json){
        $json=str_replace('{', '', $json);
        $json=str_replace('}','',$json);
        $array=explode(',', $json);
        $result=[];
        foreach($array as $key =>$value){
            $temparr=explode(',',$value);
            $temparr1=explode(':',$temparr[0]);

            if(count($temparr1)==0)continue;
            $result[$temparr1[0]]=trim( $temparr1[1],'');
        }
        //$obj=  (object)($result);

        return obj2array($result);
        //return $result;
    }

 

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved