怎么去掉????来自 dompdf 生成器

how to remove ???? from dompdf generator

这是我的代码,如何显示阿拉伯字体字母而不是问号和要包含在 pdf 中的字体。
函数

pdf_create($html, $filename, $stream=TRUE) 
    {
        require_once("dompdf/dompdf_config.inc.php");
        $date=date("m_d_Y");
        $filename = $filename.'_'.$date.'_'.rand();
        $dompdf = new DOMPDF();
        $html = mb_convert_encoding($html, 'HTML-ENTITIES', 'UTF-8');   
        $dompdf->load_html($html);        
        $dompdf->render();
        $dompdf->stream("$filename".".pdf", array("Attachment" => false));
    } 

直接解决方案是 appreiated.wait 昨天的解决方案

此代码有效

在 php 页面中,将下面的代码放在头部。 问题出在我的 css 字体中,所以我只有阿拉伯字母 ?????? pdf

<meta http-equiv="Content-Type" content="charset=utf-8"/>

在css

th
            {
                font-family: "DejaVu Sans Mono", monospace;
                /*font-family: "Helvetica", sans-serif;*/ This is wrong
                border: solid 1px black;
                font-size: 12px;
            }