[PHP-DOC] cvs: phpdoc /en/reference/fdf/functions fdf-get-file.xml fdf-next-field-name.xml fdf-set-file.xml
by Friedhelm Betz other posts by this author
Feb 12 2006 12:57PM messages near this date
[PHP-DOC] cvs: phpdoc /en/reference/filesystem/functions feof.xml
|
[PHP-DOC] cvs: phpdoc /en/language control-structures.xml
betz Sun Feb 12 20:56:42 2006 UTC
Modified files:
/phpdoc/en/reference/fdf/functions fdf-get-file.xml
fdf-next-field-name.xml
fdf-set-file.xml
Log:
example correction, user hintmisspelled function name, fdf_enum_fields does not exist
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/fdf/functions/fdf-get-file.xml?r1=1.3&r2=
1.4&diff_format=u
Index: phpdoc/en/reference/fdf/functions/fdf-get-file.xml
diff -u phpdoc/en/reference/fdf/functions/fdf-get-file.xml:1.3 phpdoc/en/reference/fdf/funct
ions/fdf-get-file.xml:1.4
--- phpdoc/en/reference/fdf/functions/fdf-get-file.xml:1.3 Mon Oct 21 20:57:18 2002
+++ phpdoc/en/reference/fdf/functions/fdf-get-file.xml Sun Feb 12 20:56:42 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.3 $ -->
+<!-- $Revision: 1.4 $ -->
<!-- splitted from ./en/functions/fdf.xml, last change in rev 1.2 -->
<refentry id="function.fdf-get-file">
<refnamediv>
@@ -13,7 +13,7 @@
<methodparam> <type>resource</type><parameter>fdf_document</parameter></methodparam>
</methodsynopsis>
<para>
- The <function> fdf_set_file</function> returns the value
+ The <function> fdf_get_file</function> returns the value
of the /F key.
</para>
<para>
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/fdf/functions/fdf-next-field-name.xml?r1=
1.6&r2=1.7&diff_format=u
Index: phpdoc/en/reference/fdf/functions/fdf-next-field-name.xml
diff -u phpdoc/en/reference/fdf/functions/fdf-next-field-name.xml:1.6 phpdoc/en/reference/fd
f/functions/fdf-next-field-name.xml:1.7
--- phpdoc/en/reference/fdf/functions/fdf-next-field-name.xml:1.6 Thu Jan 15 12:42:20 2004
+++ phpdoc/en/reference/fdf/functions/fdf-next-field-name.xml Sun Feb 12 20:56:42 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.6 $ -->
+<!-- $Revision: 1.7 $ -->
<!-- splitted from ./en/functions/fdf.xml, last change in rev 1.2 -->
<refentry id="function.fdf-next-field-name">
<refnamediv>
@@ -37,8 +37,7 @@
</example>
</para>
<para>
- See also <function> fdf_enum_fields</function> and
- <function> fdf_get_value</function>.
+ See also <function> fdf_get_value</function>.
</para>
</refsect1>
</refentry>
http://cvs.php.net/viewcvs.cgi/phpdoc/en/reference/fdf/functions/fdf-set-file.xml?r1=1.4&r2=
1.5&diff_format=u
Index: phpdoc/en/reference/fdf/functions/fdf-set-file.xml
diff -u phpdoc/en/reference/fdf/functions/fdf-set-file.xml:1.4 phpdoc/en/reference/fdf/funct
ions/fdf-set-file.xml:1.5
--- phpdoc/en/reference/fdf/functions/fdf-set-file.xml:1.4 Sat Aug 16 17:06:53 2003
+++ phpdoc/en/reference/fdf/functions/fdf-set-file.xml Sun Feb 12 20:56:42 2006
@@ -1,5 +1,5 @@
<?xml version="1.0" encoding="iso-8859-1"?>
-<!-- $Revision: 1.4 $ -->
+<!-- $Revision: 1.5 $ -->
<!-- splitted from ./en/functions/fdf.xml, last change in rev 1.2 -->
<refentry id="function.fdf-set-file">
<refnamediv>
@@ -37,16 +37,16 @@
$fdf = fdf_create();
/* set field "foo" to value "bar" */
- $fdf_set_value($fdf, "foo", "bar");
+ fdf_set_value($fdf, "foo", "bar");
/* tell client to display FDF data using "fdf_form.pdf" */
fdf_set_file($fdf, "http://www.example.com/fdf_form.pdf");
/* output fdf */
- fdf_save();
+ fdf_save($fdf);
/* clean up */
- fdf_close();
+ fdf_close($fdf);
?>
]]>
</programlisting>
|