php的帮助文档,涉及到PHP的案例和基本语法,以及实际应用内容

源代码在线查看: function.fdf-create.html

软件大小: 3633 K
上传用户: fengkuangyidao
关键词: php PHP 文档 实际应用
下载地址: 免注册下载 普通下载 VIP

相关代码

												 				  Create a new FDF document				  				 				 				 fdf_close				 fdf_enum_values				 FDF Functions				 PHP Manual								 				  fdf_create				  (PHP 4, PHP 5)fdf_create — Create a new FDF document								 				 				 				  Description				  				   resource fdf_create				    ( void				   )								  				   Creates a new FDF document. 				  				  				   This function is needed if one would like to populate input fields in a				   PDF document with data.				  				 												 				  Return Values				  				   Returns a FDF document handle, or FALSE on error.				  				 												 				  Examples				  				   				    Example #1 Populating a PDF document				    								<?php$outfdf = fdf_create();fdf_set_value($outfdf, "volume", $volume, 0);fdf_set_file($outfdf, "http:/testfdf/resultlabel.pdf");fdf_save($outfdf, "outtest.fdf");fdf_close($outfdf);Header("Content-type: application/vnd.fdf");$fp = fopen("outtest.fdf", "r");fpassthru($fp);unlink("outtest.fdf");?>												    								   				  				 												 				  See Also				  				   				    fdf_close()				    fdf_save()				    fdf_open()				   				  				 																 fdf_close				 fdf_enum_values				 FDF Functions				 PHP Manual											

相关资源