选择语言 :

 Core_Config::data_format

格式化数据方式

string Core_Config::data_format( fixed $data )

参数列表

参数 类型 描述 默认值
$data fixed $data
返回值
  • string
File: ./core/classes/config.class.php
protected function data_format($data)
{
    return gzcompress(serialize($data), 9);
}