选择语言 :

 Core_Email::print_debugger

Get Debug Message

string Core_Email::print_debugger( )
返回值
  • string
File: ./core/classes/email.class.php
public function print_debugger()
{
    $msg = '';

    if (count($this->_debug_msg) > 0)
    {
        foreach ($this->_debug_msg as $val)
        {
            $msg .= $val;
        }
    }

    return $msg.'<pre>'.$this->_header_str."\n".htmlspecialchars($this->_subject)."\n".htmlspecialchars($this->_finalbody).'</pre>';
}