数组式访问-ArrayAccess
以前对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
<?php return [ '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