Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
使用 FPDF,我希望有多个页面,每个页面都有不同的大小,但我不知道如何让它工作。我假设以下内容:
$pdf ->AddPage(Array(55,85)); //add first page content $pdf ->AddPage(Array(139,99)); //add second page content
会起作用,但如果我没有在构造函数上指定宽度,或者我指定的宽度,它只会使它们成为默认值(A4)。
我究竟做错了什么?
您需要传递 'P' 或 'L' 作为第一个参数。然后是数组的大小。