ini_set('memory_limit', '128M');
require_once('./mpdf/mpdf.php');
$mpdf = new mPDF('ja', 'A4-L');
$html = file_get_contents("http://www.yahoo.co.jp");
$mpdf->WriteHTML($html);
$mpdf->Output();
exit;
mpdf.phpが読み込めない時は、
メモリーを大きくすること!!
赤太字の行を追加!!
require_once('./mpdf/mpdf.php');
$mpdf = new mPDF('ja', 'A4-L');
$html = file_get_contents("http://www.yahoo.co.jp");
$mpdf->WriteHTML($html);
$mpdf->Output();
exit;
mpdf.phpが読み込めない時は、
メモリーを大きくすること!!
赤太字の行を追加!!