早睡早起,方能养生
Sleep early rise early, way to keep healthy

ThinkPHP分页 传递中文参数时乱码 无法使用

super
2019-01-23 14:40
views 2973

找到使用的类文件,目录一般是ThinkPHP/Library/Think/Page.class.php

找到第75行:

原来是:
$this->url = U(ACTION_NAME, $this->parameter);
或
$this->url = U(MODULE_NAME.'/'.CONTROLLER_NAME.'/'.ACTION_NAME, $this->parameter);

修改成:
$this->url = U(ACTION_NAME).'?'.http_build_query($this->parameter);




分享
0 条讨论
top