ThinkPHP 对“非法操作”的提示信息还是不足够的清晰,让人很难快速的定位是哪里出了错。
对ThinkPHP的程序做下简单分析,跟踪“非法操作”。
在文件 \ThinkPHP\Lang\zh-cn.php 找到下边的定义,你可以在这里修改提示信息。
'_ERROR_ACTION_'=> '非法操作',
再跟踪“_ERROR_ACTION_” 找到了四个文件
\ThinkPHP\Lib\Think\Core\Action.class.php
\ThinkPHP\Lib\Think\Lite\Action.class.php
\ThinkPHP\Lib\Think\Thin\Action.class.php
\ThinkPHP\Mode\Cli\Action.class.php
看你设置的使用哪个核心,一般默认为Core。
1.文件\ThinkPHP\Lib\Think\Core\Action.class.php 230行左右, 发现以下代码:
// 检查是否存在默认模版 如果有直接输出模版 if(file_exists_case(C('TMPL_FILE_NAME'))) $this->display(); else // 抛出异常 throw_exception(L('_ERROR_ACTION_').ACTION_NAME);
分析,这点代码好像是判断得到False就会 抛出异常。 修改一行代码,多返回写信息,例如:C('TMPL_FILE_NAME');__FILE__。
例如:throw_exception(L('_ERROR_ACT
ION_').ACT
ION_NAME.'('.C('TMPL_FILE_NAME').' AT '.__FILE__.')');
2.文件 \ThinkPHP\Mode\Cli\Action.class.php 35行左右
// 如果定义了_empty操作 则调用 if(method_exists($this,'_empty')) { $this->_empty($method,$parms); }else { // 抛出异常 exit(L('_ERROR_ACTION_').ACTION_NAME); }
在增加些提示信息,例如:$method,$parms
例如:exit(L('_ERROR_ACTION_').ACTION_NAME.'('.$method.'=='.$parms.')');
这样,在ThinkPHP中// 抛出异常的地方都增加了些提示信息。 ThinkPHP 对“非法操作”的提示信息还是不足够的清晰,让人很难快速的定位是哪里出了错。
对ThinkPHP的程序做下简单分析,跟踪“非法操作”。
在文件 \ThinkPHP\Lang\zh-cn.php 找到下边的定义,你可以在这里修改提示信息。
'_ERROR_ACTION_'=> '非法操作',
再跟踪“_ERROR_ACTION_” 找到了四个文件
\ThinkPHP\Lib\Think\Core\Action.class.php
\ThinkPHP\Lib\Think\Lite\Action.class.php
\ThinkPHP\Lib\Think\Thin\Action.class.php
\ThinkPHP\Mode\Cli\Action.class.php
看你设置的使用哪个核心,一般默认为Core。
1.文件\ThinkPHP\Lib\Think\Core\Action.class.php 230行左右, 发现以下代码:
// 检查是否存在默认模版 如果有直接输出模版 if(file_exists_case(C('TMPL_FILE_NAME'))) $this->display(); else // 抛出异常 throw_exception(L('_ERROR_ACTION_').ACTION_NAME);
分析,这点代码好像是判断得到False就会 抛出异常。 修改一行代码,多返回写信息,例如:C('TMPL_FILE_NAME');__FILE__。
例如:throw_exception(L('_ERROR_ACT
ION_').ACT
ION_NAME.'('.C('TMPL_FILE_NAME').' AT '.__FILE__.')');
2.文件 \ThinkPHP\Mode\Cli\Action.class.php 35行左右
// 如果定义了_empty操作 则调用 if(method_exists($this,'_empty')) { $this->_empty($method,$parms); }else { // 抛出异常 exit(L('_ERROR_ACTION_').ACTION_NAME); }
在增加些提示信息,例如:$method,$parms
例如:exit(L('_ERROR_ACTION_').ACTION_NAME.'('.$method.'=='.$parms.')');
这样,在ThinkPHP中// 抛出异常的地方都增加了些提示信息。