|
|
fdf_save_string (PHP 4 >= 4.3.0, PHP 5) fdf_save_string -- Returns the FDF document as a string Descriptionstring fdf_save_string ( resource fdf_document )
The fdf_save_string() function returns the FDF document as a string.
Пример 1. Retrieving FDF as a string |
<?php
$fdf = fdf_create();
fdf_set_value($fdf, "foo", "bar");
$str = fdf_save_string($fdf);
fdf_close($fdf);
echo $str;
?>
|
will output something like
| © 2007 info@grandviewstudio.com |
Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/sites/grandviewstudiocom/www/65f67d67a94ad980786580ae69e11c07/sape.php on line 324
Deprecated: Function set_magic_quotes_runtime() is deprecated in /home/sites/grandviewstudiocom/www/65f67d67a94ad980786580ae69e11c07/sape.php on line 330
Z058440144362 Z348613067571 |
|
|