本文整理匯總了PHP中pdf::category方法的典型用法代碼示例。如果您正苦於以下問題:PHP pdf::category方法的具體用法?PHP pdf::category怎麽用?PHP pdf::category使用的例子?那麽, 這裏精選的方法代碼示例或許可以為您提供幫助。您也可以進一步了解該方法所在類pdf
的用法示例。
在下文中一共展示了pdf::category方法的2個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的PHP代碼示例。
示例1: die
<?php
/**
* @version 1.5.0
* @package Fi pdf
* @copyright Copyright (C) 2012 Fiyo Developers.
* @license GNU/GPL, see LICENSE.txt
**/
defined('_FINDEX_') or die('Access Denied');
$pdf = new pdf();
$pdf->category(app_param('label'), Page_ID, 1);
if (isset($pdf->category)) {
$category = $pdf->category;
$catlink = $pdf->catlink;
$text = $pdf->desc;
$pagelink = $pdf->pglink;
$link = $pdf->link;
$perrows = $pdf->perrows;
$author = $pdf->author;
$title = $pdf->title;
$title = $pdf->title;
$labels = $pdf->labels;
$hits = $pdf->hits;
$date = $pdf->date;
$label = ucfirst(app_param('label'));
if ($title) {
if (!empty($label)) {
echo "<h1 class='title'>{$label}</h1>";
} else {
if (defined('Apps_Title')) {
echo "<h1 class='title'>" . Apps_Title . "</h1>";
示例2: die
<?php
/**
* @version 1.5.0
* @package Fi pdf
* @copyright Copyright (C) 2012 Fiyo Developers.
* @license GNU/GPL, see LICENSE.txt
**/
defined('_FINDEX_') or die('Access Denied');
$pdf = new pdf();
$pdf->category(app_param('id'), Page_ID);
if (isset($pdf->category)) {
$category = $pdf->category;
$catlink = $pdf->catlink;
$text = $pdf->desc;
$pagelink = $pdf->pglink;
$link = $pdf->link;
$perrows = $pdf->perrows;
$author = $pdf->author;
$title = $pdf->title;
$title = $pdf->title;
$labels = $pdf->labels;
$hits = $pdf->hits;
$date = $pdf->date;
$label = ucfirst(app_param('label'));
if ($title) {
if (!empty($label)) {
echo "<h1 class='title'>{$label}</h1>";
} else {
if (defined('PageTitle')) {
echo "<h1 class='title'>" . PageTitle . "</h1>";