中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

PHP預定義接口:ArrayAccess

發布時間:2020-08-10 05:19:03 來源:網絡 閱讀:1376 作者:hgditren 欄目:web開發
簡介
  • 提供像訪問數組一樣訪問對象的能力的接口。

接口摘要
ArrayAccess {
/* 方法 */
abstract public boolean offsetExists ( mixed $offset )
abstract public mixed offsetGet ( mixed $offset )
abstract public void offsetSet ( mixed $offset , mixed $value )
abstract public void offsetUnset ( mixed $offset )
}

目錄
  • ArrayAccess::offsetExists — 檢查一個偏移位置是否存在
  • ArrayAccess::offsetGet — 獲取一個偏移位置的值
  • ArrayAccess::offsetSet — 設置一個偏移位置的值
  • ArrayAccess::offsetUnset — 復位一個偏移位置的值

代碼演示

class Obj implements ArrayAccess
{
    private $container = [];

    public function offsetExists($offset): bool
    {
        echo '調用' . __METHOD__ . '方法' . PHP_EOL;
        echo print_r(func_get_args(), true);

        return isset($this->container[$offset]);
    }

    public function offsetGet($offset)
    {
        echo '調用' . __METHOD__ . '方法' . PHP_EOL;
        echo print_r(func_get_args(), true);

        return $this->container[$offset] ?? null;
    }

    public function offsetSet($offset, $value)
    {
        echo '調用' . __METHOD__ . '方法' . PHP_EOL;
        echo print_r(func_get_args(), true);
        $this->container[$offset] = $value;
    }

    public function offsetUnset($offset)
    {
        echo '調用' . __METHOD__ . '方法' . PHP_EOL;
        echo print_r(func_get_args(), true);

        unset($this->container[$offset]);
    }
}

//實例化對象
$zhangsan = new Obj();

//賦值
$zhangsan['name'] = '張三';//調用Obj::offsetSet方法

//輸出
echo $zhangsan['name'] . PHP_EOL;//調用Obj::offsetGet方法

//校驗是否存在
isset($zhangsan['name']) . PHP_EOL;//調用Obj::offsetExists方法

//刪除數組單元
unset($zhangsan['name']);//調用Obj::offsetUnset方法
逆向思考:

通過調用接口方法來實現對對象屬性進行操作,然后使用數組的方式訪問

$zhangsan=new Obj();

if ($zhangsan instanceof \ArrayAccess) {
    //通過調用接口方法為對象賦值
    $zhangsan->offsetSet('name', '張三');

    //通過數組方式取值
    echo $zhangsan['name'] . PHP_EOL;
    //通過調用接口方法取值
    echo $zhangsan->offsetGet('name').PHP_EOL;

    //通過調用接口方法來判斷對象屬性是否存在
    if (!$zhangsan->offsetExists('age') && !isset($zhangsan['age'])) {
        $zhangsan->offsetSet('age', '18');
    }

    $zhangsan['address']='北京';
    //通過調用接口方法來判斷對象屬性
    $zhangsan->offsetUnset('address');

    echo $zhangsan['address'] ?? 'address is not exists';

    //直接為對象屬性賦值(不可行)
    $zhangsan->school='Peking University';
    echo $zhangsan['school'] ?? 'school is not exists';//school is not exists
}

應用案例演示

實現配置文件信息讀取

準備工作:

按照一下給出的目錄結構建立文件

./
├── config
│?? ├── app.php
│?? └── database.php
└── config.php
  • ./config/app.php

    <?php
    return [
        'name' => 'app name',
        'version' => 'v1.0.0'
    ];
  • ./config/database.php

    <?php
    return [
        'mysql' => [
            'host' => 'localhost',
            'user' => 'root',
            'password' => '12345678'
        ]
    ];
  • ./config.php
<?php

namespace Config;

final Class Config implements \ArrayAccess
{
    private $config = [];
    private static $instance = null;
    private $path = null;

    private function __construct()
    {
        $this->path = __DIR__ . '/config/';
    }

    //單例模式獲取實例
    public static function getInstance()
    {
        if (!self::$instance instanceof self) {
            self::$instance = new self;
        }
        return self::$instance;
    }

    //防止被克隆
    private function __clone()
    {
    }

    public function offsetExists($offset)
    {
        return isset($this->config[$offset]);
    }

    public function offsetGet($offset)
    {
        if (!isset($this->config[$offset]) || empty($this->config[$offset])) {
            //裝載配置文件
            $this->config[$offset] = require $this->path . $offset . '.php';
        }
        return $this->config[$offset];
    }

    public function offsetSet($offset, $value)
    {
        throw new \Exception('不提供設置配置');
    }

    public function offsetUnset($offset)
    {
        throw new \Exception('不提供刪除配置');
    }
}

$config = Config::getInstance();

//獲取app.php 文件的 name
echo $config['app']['name'].PHP_EOL; //app name

//獲取database.php文件mysql的user配置
echo $config['database']['mysql']['user'].PHP_EOL; // root
向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

武清区| 临武县| 三都| 云南省| 赣州市| 遂平县| 浪卡子县| 河池市| 蕲春县| 青岛市| 峡江县| 贵德县| 湖南省| 富平县| 沈丘县| 会理县| 中阳县| 资溪县| 青神县| 类乌齐县| 航空| 内丘县| 锡林浩特市| 塔城市| 育儿| 开鲁县| 万荣县| 辽中县| 兴和县| 时尚| 梧州市| 龙江县| 溧水县| 镇雄县| 天台县| 交口县| 淳化县| 翁牛特旗| 六盘水市| 盘山县| 洛宁县|