Inserting line breaks into PDF

前端 未结 13 1670
佛祖请我去吃肉
佛祖请我去吃肉 2020-11-30 12:34

I\'m generating some PDF file on the fly using PHP. My problem is I need to insert line breaks in some part of the text that will be inserted in the PDF file. Something like

13条回答
  •  南方客
    南方客 (楼主)
    2020-11-30 12:46

    Or just try this after each text passage for a new line.

    $pdf->Write(0, ' ', '*', 0, 'C', TRUE, 0, false, false, 0) ;

提交回复
热议问题