當前位置: 首頁>>代碼示例>>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;未經允許,請勿轉載。