이 기사에서는 주로 특정 참조 가치가 있는 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]); } }
이러한 방식으로 구성 개체를 사용하여 구성 정보 내용에 직접 액세스할 수 있습니다.
구성 프로그램:
구성 파일을 사용하여 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 중국어 웹사이트의 기타 관련 기사를 참조하세요!