Deprecated: The each() function is deprecated. This message will be suppressed on further calls in /home/zhenxiangba/zhenxiangba.com/public_html/phproxy-improved-master/index.php on line 456
PHP: fdf_save_string - Manual
[go: Go Back, main page]

PHP  
downloads | documentation | faq | getting help | mailing lists | reporting bugs | php.net sites | links | my php.net 
search for in the  
<fdf_remove_itemfdf_save" width="11" height="7"/>
view the version of this page
Last updated: Sat, 21 Jan 2006

fdf_save_string

(PHP 4 >= 4.3.0, PHP 5)

fdf_save_string -- FDF ドキュメントを文字列として返す

説明

string fdf_save_string ( resource fdf_document )

fdf_save_string() 関数は、FDF ドキュメントを 文字列として返します。

例 1. FDF を文字列として取得する

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

出力は以下のようになります。

%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

fdf_save()fdf_open_string()fdf_create() および fdf_close() も参照ください。



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

<fdf_remove_itemfdf_save" width="11" height="7"/>
 Last updated: Sat, 21 Jan 2006
show source | credits | sitemap | contact | advertising | mirror sites 
Copyright © 2001-2006 The PHP Group
All rights reserved.
This mirror generously provided by: PacketBusiness, Inc.
Last updated: Tue May 2 07:16:05 2006 JST