诡异的No recipient addresses found in header

改完一些代码,php脚本运行时突然报No recipient addresses found in header错误,看php的error_log和自己的日志也没内容,网上搜了一圈,说是跟mail有关,但是我也没用mail啊,最后还是一行一行的试吧。后来才发现是这个搞的鬼。

/**
 * @param array
 * @return void
 */
function LOG_DEBUG(){
 $args = func_get_args();
 $format = array_shift( $args );
 error_log( 'DEBUG: ' . $format, $args );
}

这一行我其实忘写了点东西,

/**
* @param array
* @return void
*/
function LOG_DEBUG(){
$args = func_get_args();
$format = array_shift( $args );
error_log( vsprintf(‘DEBUG: ‘ . $format, $args) );
}

error_log搞的鬼~~~


											
此条目发表在 php异常 分类目录。将固定链接加入收藏夹。

发表评论

电子邮件地址不会被公开。 必填项已用 * 标注

*


*

您可以使用这些 HTML 标签和属性: <a href="" title=""> <abbr title=""> <acronym title=""> <b> <blockquote cite=""> <cite> <code> <del datetime=""> <em> <i> <q cite=""> <strike> <strong>