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.靜態方法
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 voidStdClass */ 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; }