PHP陣列式存取-ArrayAccess範例解析

2020-07-16 10:05:32
本文章主要講述了PHP中的陣列式存取,具有一定參考價值,感興趣的朋友可以了解一下,希望能幫助到你。

  以前對ArrayAccess不是很熟悉,現在整理下下有關ArrayAccess相關的知識,ArrayAccess介面就是提供像存取陣列一樣存取物件的能力的介面。

介面內容如下:

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 ); 
}

專案中使用,獲取網站設定:

<?php
namespace lib;
use mpfcoreDi;
class config implements ArrayAccess{

//定義儲存資料的陣列
   protected $configs;
   public function __construct($configs){
         $this->configs = $configs;
         $configs = libmodelHome::getWebConfig();
         foreach( $configs as $config ){
               if( !isset($this->configs[$config['sc_key']]) ){
                   $this->configs[$config['sc_key']] = $config['sc_content'];
               }
         }
   }
   public function get($key){
         if( isset($this->configs[$key]) ){
               return $this->configs[$key];
         }elseif( $key == 'caipiao'){
               $this->configs['caipiao'] = libmodelHome::getLcs();  
               return $this->configs[$key];
         }elseif( $key == 'user_money' ){
               if( isset($_SESSION['uid']) ){
                 if( $_SESSION['utype'] == 5 ){
                       $sql = 'select money from inner_user where uid=?';
                 }else{
                       $sql = 'select money from user where uid=?';
                 }
                   $this->configs['user_money'] = mpfcoreDi::$Di->db->prepare_query($sql,[getUid()])->fetch(PDO::FETCH_COLUMN);
                   return $this->configs['user_money'];
             }
       }
   }
   public function offsetExists($index){
         return isset($this->configs[$index]);
   }
   public function offsetGet($index){
         return $this->configs[$index];
   }
   public function offsetSet($index,$val){
         $this->configs[$index] = $val;
   }
   public function offsetUnset($index){
         unset($this->configs[$index]);
   }
}

這樣可以使用config物件來直接存取設定資訊內容。

設定程式:

我們可以通過ArrayAccess利用組態檔來控制程式。

1. 在專案更目錄下建立一個config目錄
2. 在config目錄下建立相應的組態檔,比如app.php 和 database.php。檔案程式如下

app.php

<?phpreturn [   
 'name' => 'app name',   
  'version' => 'v1.0.0'
];

database.php

<?php

return [
    'mysql' => [
        'host' => 'localhost',
        'user' => 'root',
        'password' => '12345678'
    ]
];

3. Config.php實現ArrayAccess

<?php

namespace Config;

class Config implements ArrayAccess
{
    private $config = [];

    private static $instance;

    private $path;

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

    public static function instance()
    {
        if (!(self::$instance instanceof Config)) {
            self::$instance = new Config();
        }
        return self::$instance;
    }
    
    public function offsetExists($offset)
    {
        return isset($this->config[$offset]);
    }
    
    public function offsetGet($offset)
    {
        if (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::instance();

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

//獲取database.php檔案mysql的user設定
echo $config['database']['mysql']['user'].PHP_EOL; // root

相關教學:PHP視訊教學

以上就是PHP陣列式存取-ArrayAccess範例解析的詳細內容,更多請關注TW511.COM其它相關文章!