|
interface ArrayAccess
boolean offsetExists($index)
mixed offsetGet($index)
void offsetSet($index, $newvalue)
void offsetUnset($index)
下面的例子展示了如何使用這個接口,例子并不是完整的,但是足夠看懂,:->
復制代碼 代碼如下:
<?php
class UserToSocialSecurity implements ArrayAccess
{
private $db;//一個包含著數據庫訪問方法的對象
function offsetExists($name)
{
return $this->db->userExists($name);
}
function offsetGet($name)
{
return $this->db->getUserId($name);
}
function offsetSet($name, $id)
{
$this->db->setUserId($name, $id);
}
function offsetUnset($name)
{
$this->db->removeUser($name);
}
}
$userMap = new UserToSocialSecurity();
print "John's ID number is " . $userMap['John'];
?>
實際上,當 $userMap['John'] 查找被執行時,php 調用了 offsetGet() 方法,由這個方法再來調用數據庫相關的 getUserId() 方法。
php技術:PHP 的ArrayAccess接口 像數組一樣來訪問你的PHP對象,轉載需保留來源!
鄭重聲明:本文版權歸原作者所有,轉載文章僅為傳播更多信息之目的,如作者信息標記有誤,請第一時間聯系我們修改或刪除,多謝。