|
发表于 2014-9-26 17:14:33
|
显示全部楼层
这个函数里的自动换行截取76个字符导致的问题,中文的话很容易把一个字分成两行。这想这是个bug
// If we're at the character limit, add the line to the output,
// reset our temp variable, and keep on chuggin'
if ((strlen($temp) + strlen($char)) >= $charlim)
{
$output .= $temp.$escape.$this->crlf;
$temp = '';
} |
|