\vendor\dompdf\dompdf\src\FrameReflower\Text.php文件需要修改
// $_wordbreak_pattern此变量修改如下
// 原:public static $_wordbreak_pattern = '/([^\S\xA0\x{202F}\x{2007}\n]+|\R|\-+|\xAD+)/u';
// 新:
public static $_wordbreak_pattern = '/./u';
// 原:
// Split the text into words
// $words = preg_split(self::$_wordbreak_pattern, $text, -1, PREG_SPLIT_DELIM_CAPTURE);
// $wc = count($words);
// 新
$new = [];
preg_match_all(self::$_wordbreak_pattern, $text, $new);
$words = $new[0];
$wc = count($words);
Was this helpful?
0 / 0