2003-01-20 04:08:28 +00:00
|
|
|
<?xml version="1.0" encoding="iso-8859-1"?>
|
2004-08-08 01:30:40 +00:00
|
|
|
<!-- $Revision: 1.5 $ -->
|
2003-01-20 04:08:28 +00:00
|
|
|
<refentry id="function.fprintf">
|
|
|
|
<refnamediv>
|
|
|
|
<refname>fprintf</refname>
|
|
|
|
<refpurpose>Write a formatted string to a stream</refpurpose>
|
|
|
|
</refnamediv>
|
|
|
|
<refsect1>
|
|
|
|
<title>Description</title>
|
|
|
|
<methodsynopsis>
|
|
|
|
<type>int</type><methodname>fprintf</methodname>
|
|
|
|
<methodparam><type>resource</type><parameter>handle</parameter></methodparam>
|
|
|
|
<methodparam><type>string</type><parameter>format</parameter></methodparam>
|
|
|
|
<methodparam choice="opt"><type>mixed</type><parameter>args</parameter></methodparam>
|
2004-08-08 01:30:40 +00:00
|
|
|
<methodparam choice="opt"><type>mixed</type><parameter>...</parameter></methodparam>
|
2003-01-20 04:08:28 +00:00
|
|
|
</methodsynopsis>
|
|
|
|
<simpara>
|
2004-07-30 05:04:21 +00:00
|
|
|
Write a string produced according to <parameter>format</parameter>
|
|
|
|
to the stream resource specified by <parameter>handle</parameter>.
|
|
|
|
<parameter>format</parameter> is described in the documentation for
|
|
|
|
<function>sprintf</function>.
|
2003-01-20 04:08:28 +00:00
|
|
|
</simpara>
|
2004-07-30 04:20:42 +00:00
|
|
|
<simpara>
|
|
|
|
Returns the length of the outputted string.
|
|
|
|
</simpara>
|
2003-01-20 04:08:28 +00:00
|
|
|
<simpara>
|
|
|
|
See also: <function>printf</function>,
|
|
|
|
<function>sprintf</function>,
|
|
|
|
<function>sscanf</function>, <function>fscanf</function>,
|
|
|
|
<function>vsprintf</function>, and
|
|
|
|
<function>number_format</function>.
|
|
|
|
</simpara>
|
|
|
|
</refsect1>
|
|
|
|
<refsect1>
|
|
|
|
<title>Examples</title>
|
|
|
|
<para>
|
|
|
|
<example>
|
2004-07-30 05:04:21 +00:00
|
|
|
<title><function>fprintf</function>: zero-padded integers</title>
|
2003-01-20 04:08:28 +00:00
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
2003-05-30 16:47:59 +00:00
|
|
|
<?php
|
2004-07-30 05:04:21 +00:00
|
|
|
if (!($fp = fopen('date.txt', 'w')))
|
|
|
|
return;
|
|
|
|
|
|
|
|
fprintf($fp, "%04d-%02d-%02d", $year, $month, $day);
|
|
|
|
// will write the formatted ISO date to date.txt
|
2003-05-30 16:47:59 +00:00
|
|
|
?>
|
2003-01-20 04:08:28 +00:00
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
<example>
|
2004-07-30 05:04:21 +00:00
|
|
|
<title><function>fprintf</function>: formatting currency</title>
|
2003-01-20 04:08:28 +00:00
|
|
|
<programlisting role="php">
|
|
|
|
<![CDATA[
|
2003-05-30 16:47:59 +00:00
|
|
|
<?php
|
2004-07-30 05:04:21 +00:00
|
|
|
if (!($fp = fopen('currency.txt', 'w')))
|
|
|
|
return;
|
|
|
|
|
2003-01-20 04:08:28 +00:00
|
|
|
$money1 = 68.75;
|
|
|
|
$money2 = 54.35;
|
|
|
|
$money = $money1 + $money2;
|
|
|
|
// echo $money will output "123.1";
|
2004-07-30 05:04:21 +00:00
|
|
|
$len = fprintf($fp, '%01.2f', $money);
|
|
|
|
// will write "123.10" to currency.txt
|
|
|
|
|
|
|
|
echo "wrote $len bytes to currency.txt";
|
|
|
|
// use the return value of fprintf to determine how many bytes we wrote
|
2003-05-30 16:47:59 +00:00
|
|
|
?>
|
2003-01-20 04:08:28 +00:00
|
|
|
]]>
|
|
|
|
</programlisting>
|
|
|
|
</example>
|
|
|
|
</para>
|
|
|
|
</refsect1>
|
|
|
|
</refentry>
|
|
|
|
|
|
|
|
<!-- Keep this comment at the end of the file
|
|
|
|
Local variables:
|
|
|
|
mode: sgml
|
|
|
|
sgml-omittag:t
|
|
|
|
sgml-shorttag:t
|
|
|
|
sgml-minimize-attributes:nil
|
|
|
|
sgml-always-quote-attributes:t
|
|
|
|
sgml-indent-step:1
|
|
|
|
sgml-indent-data:t
|
|
|
|
indent-tabs-mode:nil
|
|
|
|
sgml-parent-document:nil
|
|
|
|
sgml-default-dtd-file:"../../../../manual.ced"
|
|
|
|
sgml-exposed-tags:nil
|
|
|
|
sgml-local-catalogs:nil
|
|
|
|
sgml-local-ecat-files:nil
|
|
|
|
End:
|
|
|
|
vim600: syn=xml fen fdm=syntax fdl=2 si
|
|
|
|
vim: et tw=78 syn=sgml
|
|
|
|
vi: ts=1 sw=1
|
|
|
|
-->
|