PHP 내 보 내기 pdf 파일dompdf
1162 단어 dompdfphp 내 보 내기 pdf
dompdf 다운로드 주소:http://code.google.com/p/dompdf/downloads/list 공식 내 보 내기 pdf 의 예 포함
설정 파일 dompdfconfig.inc.php 288 def("DOMPDF_ENABLE_REMOTE", true);
require(SITE_PATH.'/libs/dompdf/dompdf_config.inc.php');
$content = $this->view->fetch('sample*');
$contents = stripslashes($content);
$html = $this->replace_html_tag($contents,'script',true);
$dompdf = new DOMPDF();
$dompdf->load_html($html);
$dompdf->set_paper('letter', 'portrait');
$dompdf->render();
$dompdf->stream("sample.pdf", array("Attachment" => true));
exit(0);
// HTML
function replace_html_tag($string, $tagname, $clear = false){
$re = $clear ? '' : '\1';
$sc = '/<' . $tagname . '(?:\s[^>]*)?>([\s\S]*?)?<\/' . $tagname . '>/i';
return preg_replace($sc, $re, $string);
}
// style
$string = replace_html_tag($string, 'style', true);
이 내용에 흥미가 있습니까?
현재 기사가 여러분의 문제를 해결하지 못하는 경우 AI 엔진은 머신러닝 분석(스마트 모델이 방금 만들어져 부정확한 경우가 있을 수 있음)을 통해 가장 유사한 기사를 추천합니다:
그리스 자모가??로 바뀌다PHPWord로 docx를 pdf로 변환하면?11월 17일 20일. 설명: 1 정답: 1 다음과 같은 간단한 laravel artisan 명령을 만들었습니다. 이것은 docx 파일을 받아서 pdf로 변환합니다.그러나 명확한 이유로 docx는 그리스 자모를 포함...
텍스트를 자유롭게 공유하거나 복사할 수 있습니다.하지만 이 문서의 URL은 참조 URL로 남겨 두십시오.
CC BY-SA 2.5, CC BY-SA 3.0 및 CC BY-SA 4.0에 따라 라이센스가 부여됩니다.