简体   繁体   中英

How to break line into tcpdf

i have a problem with tcpdf break line. In perfexcrm when you make an invoice automatically create a pdf like code below

foreach ($pdf_custom_fields as $field) {
$value = get_custom_field_value($invoice->id, $field['id'], 'invoice');
if ($value == '') {
    continue;
}
$invoice_info .= $field['name'] . ': ' . $value . '<br />';

But when print pdf the file looks bad.

How to break line on this portion of code?

Thanks for help

Your code is correct only. Make sure $value is string.

The technical post webpages of this site follow the CC BY-SA 4.0 protocol. If you need to reprint, please indicate the site URL or the original address.Any question please contact:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM