• 首页
  • vue
  • TypeScript
  • JavaScript
  • scss
  • css3
  • html5
  • php
  • MySQL
  • redis
  • jQuery
  • PDF_set_info()

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

    Fill document info field

    说明

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

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

    <?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");
    ?>