+ -
当前位置:首页 → 问答吧 → PHP后台运行问题。

PHP后台运行问题。

时间:2011-12-11

来源:互联网

function SendMail(){
header('Content-Type:text/html; charset=utf-8');
ob_end_clean();
header("Connection:close");
ob_start();
$size = ob_get_length();
header("Content-Length:".$size);
ob_end_flush();
flush();
set_time_limit(0);

//发送邮件程序


}

SendMail(); //成功在后台发送邮件

subfunction(); //但这个函数不执行?为什么?

作者: lahoo_net_cn   发布时间: 2011-12-11

where is the subfunction?

作者: PhpNewnew   发布时间: 2011-12-11

什么叫 不执行?你是如何知道他不执行的?

作者: xuzuning   发布时间: 2011-12-11

相关阅读 更多