本文實例講述了PHP容器類的兩種實現(xiàn)方式。分享給大家供大家參考,具體如下:
通過魔術(shù)方法實現(xiàn)
class
class MagicContainer{
private $ele;
function __construct()
{
$this->ele = [];
}
function __set($name, $value)
{
$this->ele[$name] = $value;
}
function __get($name)
{
return $this->ele[$name];
}
function __isset($name)
{
return isset($this->ele[$name]);
}
function __unset($name)
{
if(isset($this->ele[$name])){
unset($this->ele[$name]);
}
}
}
usage
$container = new MagicContainer();
$container->logger = function ($msg){
file_put_contents('info.log',$msg.PHP_EOL,FILE_APPEND);
};
$logger = $container->logger;
$logger('magic container works');
通過ArrayAccess接口實現(xiàn)
class
class ArrayContainer implements ArrayAccess {
private $elements;
public function __construct()
{
$this->elements = [];
}
public function offsetExists($offset){
return isset($this->elements[$offset]);
}
public function offsetGet($offset){
if($this->offsetExists($offset)){
return $this->elements[$offset];
}else{
return false;
}
}
public function offsetSet($offset, $value){
$this->elements[$offset] = $value;
}
public function offsetUnset($offset){
if($this->offsetExists($offset)){
unset($this->elements[$offset]);
}
}
}
usage
$container = new ArrayContainer();
$container['logger'] = function ($msg){
file_put_contents('info.log',$msg.PHP_EOL,FILE_APPEND);
};
$logger = $container['logger'];
$logger('array container works');
Container
class
class Container implements ArrayAccess {
private $elements;
public function __construct()
{
$this->elements = [];
}
public function offsetExists($offset){
return isset($this->elements[$offset]);
}
public function offsetGet($offset){
if($this->offsetExists($offset)){
return $this->elements[$offset];
}else{
return false;
}
}
public function offsetSet($offset, $value){
$this->elements[$offset] = $value;
}
public function offsetUnset($offset){
if($this->offsetExists($offset)){
unset($this->elements[$offset]);
}
}
function __set($name, $value)
{
$this->elements[$name] = $value;
}
function __get($name)
{
return $this->elements[$name];
}
function __isset($name)
{
return isset($this->elements[$name]);
}
function __unset($name)
{
if(isset($this->elements[$name])){
unset($this->elements[$name]);
}
}
}
usage
$container = new Container();
$container['logger'] = function ($msg){
file_put_contents('info.log',$msg.PHP_EOL,FILE_APPEND);
};
$logger = $container->logger;
$logger('container works');
更多關(guān)于PHP相關(guān)內(nèi)容感興趣的讀者可查看本站專題:《php面向?qū)ο蟪绦蛟O(shè)計入門教程》、《PHP數(shù)組(Array)操作技巧大全》、《PHP基本語法入門教程》、《PHP運(yùn)算與運(yùn)算符用法總結(jié)》、《php字符串(string)用法總結(jié)》、《php+mysql數(shù)據(jù)庫操作入門教程》及《php常見數(shù)據(jù)庫操作技巧匯總》
希望本文所述對大家PHP程序設(shè)計有所幫助。
您可能感興趣的文章:- PHP 應(yīng)用容器化以及部署方法
- 深入理解 PHP7 中全新的 zval 容器和引用計數(shù)機(jī)制
- PHP解耦的三重境界(淺談服務(wù)容器)
- PHP實現(xiàn)一個輕量級容器的方法
- PHP進(jìn)階學(xué)習(xí)之依賴注入與Ioc容器詳解
- php 接口類與抽象類的實際作用
- php接口和抽象類使用示例詳解
- PHP調(diào)用wsdl文件類型的接口代碼分享
- PHP生成json和xml類型接口數(shù)據(jù)格式
- PHP中抽象類、接口的區(qū)別與選擇分析