WordPress 插件激活期间出现意外输出错误
激活 WordPress 插件时,您可能会遇到错误“插件生成了意外的 X 个字符”激活期间的输出。”此消息表明该插件产生了干扰激活过程的意外输出。
错误原因:
此错误有两个潜在原因:
define('temp_file', ABSPATH.'/_temp_out.txt' ); add_action("activated_plugin", "activation_handler1"); function activation_handler1(){ $cont = ob_get_contents(); if(!empty($cont)) file_put_contents(temp_file, $cont ); } add_action( "pre_current_active_plugins", "pre_output1" ); function pre_output1($action){ if(is_admin() & & file_exists(temp_file)) { $cont= file_get_contents(temp_file); if(!empty($cont)) { echo '<div class="error"> Error Message:' . $cont . '</div>'; @unlink(temp_file); } } }
解决错误:
到要解决此错误,请考虑以下步骤:
以上是为什么我的 WordPress 插件在激活过程中会生成'意外输出”?的详细内容。更多信息请关注PHP中文网其他相关文章!