当前位置: 首页>>代码示例>>PHP>>正文


PHP MYPDF::cell方法代码示例

本文整理汇总了PHP中MYPDF::cell方法的典型用法代码示例。如果您正苦于以下问题:PHP MYPDF::cell方法的具体用法?PHP MYPDF::cell怎么用?PHP MYPDF::cell使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在MYPDF的用法示例。


在下文中一共展示了MYPDF::cell方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。

示例1: array

    $pdf->ln();
    $pdf->WriteHtml('<h3>' . $kga['lang']['export_extension']['summary'] . '</h3>');
    $pdf->ln();
    $pdf->printSummary(array($kga['lang']['activity'], $kga['lang']['export_extension']['duration'], $kga['lang']['export_extension']['costs']), $orderedExportData);
    $pdf->AddPage();
}
// Write to the PDF document which, if any, customer filters were applied.
$customers = array();
foreach ($filterCustomers as $customerID) {
    $customer_info = $database->customer_get_data($customerID);
    $customers[] = $customer_info['name'];
}
if (count($customers) > 0) {
    $label = $kga['lang']['customer'] . ': ';
    $labelWidth = $pdf->GetStringWidth($label);
    $pdf->cell($labelWidth, 6, $label);
    $pdf->cell($labelWidth, 6, implode(', ', $customers));
    $pdf->ln();
}
// Write to the PDF document which, if any, project filters were applied.
$projects = array();
foreach ($filterProjects as $projectID) {
    $project_info = $database->project_get_data($projectID);
    $projects[] = $project_info['name'];
}
if (count($projects) > 0) {
    $label = $kga['lang']['project'] . ': ';
    $labelWidth = $pdf->GetStringWidth($label);
    $pdf->cell($labelWidth, 6, $label);
    $pdf->cell($labelWidth, 6, implode(', ', $projects));
    $pdf->ln();
开发者ID:lentschi,项目名称:kimai,代码行数:31,代码来源:export_pdf.php

示例2: array

        $pdf->Bookmark($kga['lang']['xp_ext']['summary'], 0, 0);
    }
    $pdf->ln();
    $pdf->WriteHtml('<h3>' . $kga['lang']['xp_ext']['summary'] . '</h3>');
    $pdf->ln();
    $pdf->ColoredTable_result(array($kga['lang']['evt'], $kga['lang']['xp_ext']['duration'], $kga['lang']['xp_ext']['costs']), $summary);
    $pdf->AddPage();
}
// Write to the PDF document which, if any, customer filters were applied.
$customers = array();
foreach ($filterKnd as $knd_id) {
    $customer_info = knd_get_data($knd_id);
    $customers[] = $customer_info['knd_name'];
}
if (count($customers) > 0) {
    $pdf->cell(20, 6, $kga['lang']['knd'] . ':');
    $pdf->cell(20, 6, implode(', ', $customers));
    $pdf->ln();
}
// Write to the PDF document which, if any, project filters were applied.
$projects = array();
foreach ($filterPct as $pct_id) {
    $project_info = pct_get_data($pct_id);
    $projects[] = $project_info['pct_name'];
}
if (count($projects) > 0) {
    $pdf->cell(20, 6, $kga['lang']['pct'] . ':');
    $pdf->cell(20, 6, implode(', ', $projects));
    $pdf->ln();
}
if (isset($_REQUEST['customer_new_page'])) {
开发者ID:pombredanne,项目名称:ArcherSys,代码行数:31,代码来源:export_pdf.php


注:本文中的MYPDF::cell方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。