PHP Doku:: Returns the FDF document as a string - function.fdf-save-string.html

Verlauf / Chronik / History: (1) anzeigen

Sie sind hier:
Doku-StartseitePHP-HandbuchFunktionsreferenzNon-Text MIME-AusgabenForms Data Format FunktionenFDF Funktionenfdf_save_string

Ein Service von Reinhard Neidl - Webprogrammierung.

FDF Funktionen

<<fdf_remove_item

fdf_save>>

fdf_save_string

(PHP 4 >= 4.3.0, PHP 5)

fdf_save_stringReturns the FDF document as a string

Beschreibung

string fdf_save_string ( resource $fdf_document )

Returns the FDF document as a string.

Parameter-Liste

fdf_document

The FDF document handle, returned by fdf_create(), fdf_open() or fdf_open_string().

Rückgabewerte

Returns the document as a string, or FALSE on error.

Beispiele

Beispiel #1 Retrieving FDF as a string

<?php
$fdf 
fdf_create();
fdf_set_value($fdf"foo""bar");
$str fdf_save_string($fdf);
fdf_close($fdf);
echo 
$str;
?>

Das oben gezeigte Beispiel erzeugt folgende Ausgabe:

%FDF-1.2
%âãÏÓ
1 0 obj
<<
/FDF << /Fields 2 0 R >>
>>
endobj
2 0 obj
[
<< /T (foo)/V (bar)>>
]
endobj
trailer
<<
/Root 1 0 R

>>
%%EOF

Siehe auch


Keine BenutzerBeiträge.
- Beiträge aktualisieren...



PHP Powered Diese Seite bei php.net
The PHP manual text and comments are covered by the Creative Commons Attribution 3.0 License © the PHP Documentation Group - Impressum - mail("TO:Reinhard Neidl",...)