mirror of
https://github.com/php/doc-de.git
synced 2026-03-29 10:42:12 +02:00
------------------------------- count-chars.xml 1.6 crc32.xml 1.6 crypt.xml 1.11 echo.xml 1.15 explode.xml 1.11 typo in fprintf.xml git-svn-id: https://svn.php.net/repository/phpdoc/de/trunk@185350 c90b9560-bf6c-de11-be94-00142212c4b1
97 lines
2.9 KiB
XML
97 lines
2.9 KiB
XML
<?xml version="1.0" encoding="iso-8859-1"?>
|
|
<!-- $Revision: 1.2 $ -->
|
|
<!-- EN-Revision: 1.5 Maintainer: krid Status: ready -->
|
|
<refentry id="function.fprintf">
|
|
<refnamediv>
|
|
<refname>fprintf</refname>
|
|
<refpurpose>Schreibt einen formatierten String in einen Stream</refpurpose>
|
|
</refnamediv>
|
|
<refsect1>
|
|
<title>Beschreibung</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>
|
|
<methodparam choice="opt"><type>mixed</type><parameter>...</parameter></methodparam>
|
|
</methodsynopsis>
|
|
<simpara>
|
|
Schreibt einen gemäß <parameter>format</parameter> erstellten String in
|
|
den durch <parameter>handle</parameter> angegebenen Stream.
|
|
Der Parameter <parameter>format</parameter> wird in der Dokumentation von
|
|
<function>sprintf</function> beschrieben.
|
|
</simpara>
|
|
<simpara>
|
|
Liefert die Länge des ausgegebenen Strings zurück.
|
|
</simpara>
|
|
<simpara>
|
|
Siehe auch <function>printf</function>,
|
|
<function>sprintf</function>,
|
|
<function>sscanf</function>, <function>fscanf</function>,
|
|
<function>vsprintf</function> und
|
|
<function>number_format</function>.
|
|
</simpara>
|
|
</refsect1>
|
|
<refsect1>
|
|
<title>Beispiele</title>
|
|
<para>
|
|
<example>
|
|
<title><function>fprintf</function>: Integer mit vorangestellten Nullen</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
if (!($fp = fopen('datum.txt', 'w')))
|
|
return;
|
|
|
|
fprintf($fp, "%04d-%02d-%02d", $year, $month, $day);
|
|
// schreibt ein formatiertes ISO-8601 Datum in die Datei datum.txt
|
|
?>
|
|
]]>
|
|
</programlisting>
|
|
</example>
|
|
<example>
|
|
<title><function>fprintf</function>: Formatieren einer Währung</title>
|
|
<programlisting role="php">
|
|
<![CDATA[
|
|
<?php
|
|
if (!($fp = fopen('waehrung.txt', 'w')))
|
|
return;
|
|
|
|
$betrag1 = 68.75;
|
|
$betrag2 = 54.35;
|
|
$summe = $betrag1 + $betrag2;
|
|
// echo $summe würde "123.1" ausgeben;
|
|
$laenge = fprintf($fp, '%01.2f', $summe);
|
|
// schreibt "123.10" in waehrung.txt
|
|
|
|
echo "$laenge Bytes wurden in waehrung.txt geschrieben";
|
|
// verwendet den Rückgabewert von fprintf um die Anzahl der geschriebenen Bytes auszugeben
|
|
?>
|
|
]]>
|
|
</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
|
|
-->
|