PHP数组式访问-ArrayAccess示例解析-php教程

资源魔 37 0
本文章次要讲述了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 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['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'] = \lib\model\Home::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'] = \mpf\core\Di::$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示例解析的具体内容,更多请存眷资源魔其它相干文章!

标签: php php开发教程 php开发资料 php开发自学 数组式访问

抱歉,评论功能暂时关闭!