PHP 配列アクセス - ArrayAccess サンプル分析

little bottle
リリース: 2023-04-06 10:22:01
転載
2874 人が閲覧しました

この記事では主に 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 ); 
}
ログイン後にコピー

Web サイト構成を取得するためにプロジェクトで使用されます:

<?php
namespace lib;
use mpf\core\Di;
class config implements \ArrayAccess{

//定义存储数据的数组
   protected $configs;
   public function __construct($configs){
         $this->configs = $configs;
         $configs = \lib\model\Home::getWebConfig();
         foreach( $configs as $config ){
               if( !isset($this->configs[$config[&#39;sc_key&#39;]]) ){
                   $this->configs[$config[&#39;sc_key&#39;]] = $config[&#39;sc_content&#39;];
               }
         }
   }
   public function get($key){
         if( isset($this->configs[$key]) ){
               return $this->configs[$key];
         }elseif( $key == &#39;caipiao&#39;){
               $this->configs[&#39;caipiao&#39;] = \lib\model\Home::getLcs();  
               return $this->configs[$key];
         }elseif( $key == &#39;user_money&#39; ){
               if( isset($_SESSION[&#39;uid&#39;]) ){
                 if( $_SESSION[&#39;utype&#39;] == 5 ){
                       $sql = &#39;select money from inner_user where uid=?&#39;;
                 }else{
                       $sql = &#39;select money from user where uid=?&#39;;
                 }
                   $this->configs[&#39;user_money&#39;] = \mpf\core\Di::$Di->db->prepare_query($sql,[getUid()])->fetch(\PDO::FETCH_COLUMN);
                   return $this->configs[&#39;user_money&#39;];
             }
       }
   }
   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]);
   }
}
ログイン後にコピー

これを使用して構成オブジェクトを使用して、構成情報コンテンツに直接アクセスできます。

構成プログラム:

構成ファイルを使用して、ArrayAccess を通じてプログラムを制御できます。

1. プロジェクト ディレクトリに config ディレクトリを作成します
2. config ディレクトリに app.php や database.php などの対応する設定ファイルを作成します。ファイルプログラムは次のとおりです。

app.php

<?phpreturn [   
 &#39;name&#39; => &#39;app name&#39;,   
  &#39;version&#39; => &#39;v1.0.0&#39;
];
ログイン後にコピー

database.php

<?php

return [
    &#39;mysql&#39; => [
        &#39;host&#39; => &#39;localhost&#39;,
        &#39;user&#39; => &#39;root&#39;,
        &#39;password&#39; => &#39;12345678&#39;
    ]
];
ログイン後にコピー

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(&#39;不提供设置配置&#39;);
    }

    public function offsetUnset($offset)
    {
        throw new \Exception(&#39;不提供删除配置&#39;);
    }
}

$config = Config::instance();

//获取app.php 文件的 name
echo $config[&#39;app&#39;][&#39;name&#39;].PHP_EOL; //app name

//获取database.php文件mysql的user配置
echo $config[&#39;database&#39;][&#39;mysql&#39;][&#39;user&#39;].PHP_EOL; // root
ログイン後にコピー
関連チュートリアル:

PHP ビデオ チュートリアル

以上がPHP 配列アクセス - ArrayAccess サンプル分析の詳細内容です。詳細については、PHP 中国語 Web サイトの他の関連記事を参照してください。

関連ラベル:
php
ソース:cnblogs.com
このウェブサイトの声明
この記事の内容はネチズンが自主的に寄稿したものであり、著作権は原著者に帰属します。このサイトは、それに相当する法的責任を負いません。盗作または侵害の疑いのあるコンテンツを見つけた場合は、admin@php.cn までご連絡ください。
最新の問題
人気のチュートリアル
詳細>
最新のダウンロード
詳細>
ウェブエフェクト
公式サイト
サイト素材
フロントエンドテンプレート
私たちについて 免責事項 Sitemap
PHP中国語ウェブサイト:福祉オンライン PHP トレーニング,PHP 学習者の迅速な成長を支援します!