downloads | documentation | faq | getting help | mailing lists | licenses | wiki | reporting bugs | php.net sites | conferences | my php.net

search for in the

fdf_save> <fdf_remove_item
[edit] Last updated: Fri, 17 May 2013

view this page in

fdf_save_string

(PHP 4 >= 4.3.0, PHP 5)

fdf_save_stringRestituisce un documento FDF come una stringa

Descrizione

string fdf_save_string ( resource $fdf_document )

La funzione fdf_save_string() restituisce il documento FDF come una stringa.

Example #1 Recupero di un documento FDF come stringa

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

Visualizzerà qualcosa tipo

%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

Vedere anche: fdf_save(), fdf_open_string(), fdf_create() e fdf_close().



add a note add a note User Contributed Notes fdf_save_string - [0 notes]
There are no user contributed notes for this page.

 
show source | credits | stats | sitemap | contact | advertising | mirror sites