自定義的C方法(仿照TP框架C方法),支援無限級呼叫
阿新 • • 發佈:2019-02-14
核心方法
/** * 獲取配置、設定配置 * C('A.A') * @param string $conf_key * @param string $value * @return array|string */ function C( $conf_key ='' , $conf_value = '' ){ static $conf; // 初始化 if( is_array( $conf_key ) && empty($conf) ){ $conf = $conf_key; return $conf; } // 如果第二個引數為空代表獲取配置項 C('MYSQL.host') if( empty( $conf_value ) && !empty( $conf_key ) ){ # 轉大寫防止出現錯誤 $conf_key = strtoupper( $conf_key ); //分割引數中的 . $conf_key_arr = array_filter(explode( '.' , $conf_key )); //防止靜態變數被覆蓋 $old = $conf; //根據.獲取的對應的配置項 foreach( $conf_key_arr as $key => $value ){ if( isset( $old[$value] ) ){ $old = $old[$value]; }else{ return ; } } //返回要獲取的配置的值 return $old; } # 如果兩個引數都有,表示是設定配置項 if( !empty( $conf_value ) && !empty( $conf_key ) ){ # 轉大寫防止出現錯誤 $conf_key = strtoupper( $conf_key ); //分割引數中的 . $conf_key_arr = explode( '.' , $conf_key ); //遞迴設定配置 $conf = setKeyValue( $conf , $conf_key_arr , $conf_value ); return $conf_value; } return $conf; } /** * 設定配置項【遞迴】 */ function setKeyValue( &$data , $key_arr , $data_value ){ // echo '<hr/>'; //如果key_arr長度等於1 直接複製 if( count( $key_arr ) == 1 ){ $data[array_shift($key_arr)] = $data_value; }else{ //每次彈出一個元素,並且把新的data傳遞進去 setKeyValue( $data[array_shift($key_arr)] , $key_arr , $data_value); } return $data; }
配置檔案配置:
return [ 'MYSQL' => [ 'HOST' => 'localhost', 'USER' => 'root', 'PWD' => '', 'DB' => 'index', 'CHARSET' => 'utf-8', 'aaaa'=>[ 'b'=>122, 'c' => [ 'aaa'=>121, 'bbb'=>2 ] ] ] ];