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

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

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

相关代码

												 				  Open a FDF document				  				 				 				 fdf_open_string				 fdf_remove_item				 FDF Functions				 PHP Manual								 				  fdf_open				  (PHP 4, PHP 5)fdf_open — Open a FDF document								 				 				 				  Description				  				   resource fdf_open				    ( string $filename				   )								  				   Opens a file with form data. 				  				  				   You can also use fdf_open_string() to process the				   results of a PDF form POST request.				  				 												 				  Parameters				  				   								    								     filename												     								      				       Path to the FDF file. This file must contain the data as returned from				       a PDF form or created using fdf_create() and				       fdf_save().				      				     								    								   								  				 												 				  Return Values				  				   Returns a FDF document handle, or FALSE on error.				  				 												 				  Examples				  				   				    Example #1 Accessing the form data				    								<?php// Save the FDF data into a temp file$fdffp = fopen("test.fdf", "w");fwrite($fdffp, $HTTP_FDF_DATA, strlen($HTTP_FDF_DATA));fclose($fdffp);// Open temp file and evaluate data$fdf = fdf_open("test.fdf");/* ... */fdf_close($fdf);?>												    								   				  				 												 				  See Also				  				   				    fdf_open_string()				    fdf_close()				    fdf_create()				    fdf_save()				   				  				 																 fdf_open_string				 fdf_remove_item				 FDF Functions				 PHP Manual											

相关资源