本文整理汇总了PHP中PHPRtfLite::sendRtf方法的典型用法代码示例。如果您正苦于以下问题:PHP PHPRtfLite::sendRtf方法的具体用法?PHP PHPRtfLite::sendRtf怎么用?PHP PHPRtfLite::sendRtf使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类PHPRtfLite
的用法示例。
在下文中一共展示了PHPRtfLite::sendRtf方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的PHP代码示例。
示例1: while
$formatH2->setSpaceAfter(6);
$formatP = new PHPRtfLite_ParFormat();
$formatP->setSpaceAfter(3);
// Содержание страницы
$section = $rtf->addSection();
$section->writeText('Used Cars for Sale', $fontH1, $formatH1);
while ($row = getRow($result)) {
$section->writeText($row['make'], $fontH2, $formatH2);
$section->setNoBreak();
$section->writeText('<bullet> Price: $' . number_format($row['price'], 2), $fontP, $formatP);
$section->writeText('<bullet> Mileage: ' . number_format($row['mileage']), $fontP, $formatP);
$section->writeText('<bullet> Transmission: ' . $row['transmission'], $fontP, $formatP);
$section->writeText($row['description'] . '<hr>', $fontP, $formatP);
}
// Выходной файл
$rtf->sendRtf('cars.rtf');
} catch (Exception $e) {
$error = $e->getMessage();
}
}
?>
<!doctype html>
<html>
<head>
<meta charset="utf-8">
<title>Used Cars</title>
<link href="styles/styles.css" rel="stylesheet" type="text/css">
</head>
<body>
<div id="wrapper">
示例2: PHPRtfLite
/*$project_id = $_GET["project_id"];
$ps_id = $_GET["ps_id"];
$qup = mysql_query("select * from t_project where project_id = $project_id");
$project_info = mysql_fetch_object($qup);
$qup = mysql_query("select *,date_format(ps_test_tanggal,'%d-%b-%Y') ps_test_tanggal2 from t_project_source where ps_id = $ps_id");
$project_source_info = mysql_fetch_object($qup);*/
}
// Init
$null = null;
PHPRtfLite::registerAutoloader();
$parFormat = new PHPRtfLite_ParFormat();
$rtf = new PHPRtfLite();
//setLandscape()
$rtf->setLandscape();
//$rtf->setMargins(3,2,3,2);
//_createHeader($project_info);
$rtf->setMargins(3, 2, 3, 2);
$sect =& $rtf->addSection();
//_createTitle($project_info);
_createTable();
//
/*$sect = &$rtf->addSection();
_createTable(3,3);
//
$sect = &$rtf->addSection();
_createUraian();*/
$namafile = "Schedule.rtf";
$rtf->sendRtf($namafile);