Query: fdf_open
OS: php
Section: 3
Format: Original Unix Latex Style Formatted with HTML and a Horizontal Scroll Bar
FDF_OPEN(3) 1 FDF_OPEN(3) fdf_open - Open a FDF documentSYNOPSISresource fdf_open (string $filename)DESCRIPTIONOpens a file with form data. You can also use fdf_open_string(3) to process the results of a PDF form POST request.PARAMETERSo $filename - Path to the FDF file. This file must contain the data as returned from a PDF form or created using fdf_create(3) and fdf_save(3).RETURN VALUESReturns a FDF document handle, or FALSE on error.EXAMPLESExample #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 ALSOfdf_open_string(3), fdf_close(3), fdf_create(3), fdf_save(3). PHP Documentation Group FDF_OPEN(3)
Related Man Pages |
---|
fread(3) - php |
unlink(3) - php |
fdf_get_attachment(3) - php |
stream_filter_remove(3) - php |
pdf::fdf::simple(3pm) - debian |
Similar Topics in the Unix Linux Community |
---|
Opening a file during FTP |
phpLiveDocx 1.0 (Default branch) |
Replace a string after n semicolon every line |
sort command |