数组式访问-ArrayAccess
2018-10-03 17:59:14来源:博客园 阅读 ()
以前对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
标签:
版权申明:本站文章部分自网络,如有侵权,请联系:west999com@outlook.com
特别注意:本站所有转载文章言论不代表本站观点,本站所提供的摄影照片,插画,设计作品,如需使用,请与原作者联系,版权归原作者所有
- PHP获取数组中单列值的方法 2020-03-13
- php中判断多维数组是否为空的方法 2020-03-10
- PHP中数组的排序方法 2020-03-10
- PHP实现使用DOM将XML数据存入数组的方法示例 2020-02-20
- PHP简单实现二维数组赋值与遍历功能示例 2020-02-19
IDC资讯: 主机资讯 注册资讯 托管资讯 vps资讯 网站建设
网站运营: 建站经验 策划盈利 搜索优化 网站推广 免费资源
网络编程: Asp.Net编程 Asp编程 Php编程 Xml编程 Access Mssql Mysql 其它
服务器技术: Web服务器 Ftp服务器 Mail服务器 Dns服务器 安全防护
软件技巧: 其它软件 Word Excel Powerpoint Ghost Vista QQ空间 QQ FlashGet 迅雷
网页制作: FrontPages Dreamweaver Javascript css photoshop fireworks Flash