每次激活我的插件时,我都会收到这个消息:
原文链接:/php/132061.html该插件在激活期间生成了80个字符的意外输出.如果您发现“已发送信头”信息,联合发布或其他问题,请尝试停用或删除此插件.
我可以抑制消息的唯一方法是将激活函数代码包含在条件(**见下文)中.
我应该如何重写以防止提醒?
function myPlugin($post) { echo "Whatever is here throws an unexpected output alert when the plugin isa activated"; } register_activation_hook(__FILE__,'myPlugin');
function myPlugin($post) { global $pagenow; if ( is_admin() && $pagenow !== 'plugins.PHP' ) { echo "No more alerts when its wrapped this way"; } } ?>