PDF_set_info

(PHP 4 >= 4.0.1, PECL pdflib >= 1.0.0)

PDF_set_infoFill document info field

说明

PDF_set_info ( resource $p , string $key , string $value ) : bool

Fill document information field key with value. 成功时返回 TRUE, 或者在失败时返回 FALSE

User Contributed Notes

many dot uy at hotmail dot com 13-Jun-2008 09:48
<?php
$pdf
= pdf_new();

pdf_open_file($pdf, "test.pdf");

// set PDF properties
pdf_set_info($pdf, "Author", "Martín Gonzalez");
pdf_set_info($pdf, "Title", "Test PDF");
pdf_set_info($pdf, "Creator", "Martín Gonzalez");
pdf_set_info($pdf, "Subject", "Test  PDF");

?>