Home >Backend Development >PHP Tutorial >thinkphp config文件将array serialize处理的差别

thinkphp config文件将array serialize处理的差别

WBOY
WBOYOriginal
2016-06-13 11:45:561023browse

thinkphp config文件将array serialize处理的区别
在config.php中定义array类型的常量,若需要将数组serialize序列化,则需要这样写
'ERROR_CODE'=>serialize(array(
    // Client Error 4xx
    400 => 'Bad Request',
    401 => 'Unauthorized',
    ...
)),
在使用时用

$ERROR_COEDE = unserialize(C("ERROR_CODE"));return $ERROR_COEDE[$code];


这样是OK的。ERROR_CODE也不会发生变化。

第二种情况,若array的内容比较多,需要提取到独立的文件中,则使用
require(dirname(__FILE__).'/code.php');
加载code.php的ERROR_CODE
<?phpdefine("ERROR_CODE", serialize(array(...)));?>

使用时也可以直接用unserialize反序列化。
但是若你在config.php设置了
'DEFAULT_FILTER'=>'htmlspecialchars',
就需注意了。因为thinkph会检验有无此配置参数,若存在会用此配置对应的函数处理code.php的内容,于是,获取到的内容都被htmlspecialchars转义过了。比如双引号"会被转义成\"。

因此需要将转义符号去掉再反序列化,否则会返回false。
$HTTP_CODE = stripslashes(ERROR_CODE); $ERROR_ARR = unserialize($HTTP_CODE);

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn