1
0
mirror of https://github.com/php/doc-pl.git synced 2026-03-24 15:12:16 +01:00
Files
Louis-Arnaud 5ce3413a64 Add translation for fdatasync() and fsync() (#26)
* Add Polish translation for fdatasync() and fsync()

* Fix CI: add missing xml:id for scale parameter in bcadd

The xpointer reference function.bcadd..parameters.scale is used by
bcdiv, bcpow, bcpowmod and bcsqrt but was missing from the Polish
translation of bcadd.xml, causing XInclude resolution failure.

* Fix CI: align bcadd.xml and fgetcsv.xml with doc-en structure

- bcadd.xml: remove xmlns attribute, use simpara instead of para to
  match EN structure required for XInclude xpointer resolution
- fgetcsv.xml: replace outdated note with warning element and add
  xml:id for XInclude from splfileobject/fgetcsv.xml
2026-03-02 18:22:43 +01:00

99 lines
2.2 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: 21129de1745eb016452f0ce8a2c3e47fbb8484de Maintainer: lacatoire Status: ready -->
<refentry xml:id="function.fsync" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>fsync</refname>
<refpurpose>Synchronizuje zmiany w pliku (w tym metadane)</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<type>bool</type><methodname>fsync</methodname>
<methodparam><type>resource</type><parameter>stream</parameter></methodparam>
</methodsynopsis>
<para>
Ta funkcja synchronizuje zmiany w pliku, w tym jego metadane. Jest to
podobne do <function>fflush</function>, ale dodatkowo instruuje system
operacyjny, aby zapisał dane na nośniku danych.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>stream</parameter></term>
<listitem>
&fs.validfp.all;
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
&return.success;
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>Przykład użycia <function>fsync</function></title>
<programlisting role="php">
<![CDATA[
<?php
$file = 'test.txt';
$stream = fopen($file, 'w');
fwrite($stream, 'test data');
fwrite($stream, "\r\n");
fwrite($stream, 'additional data');
fsync($stream);
fclose($stream);
?>
]]>
</programlisting>
</example>
</para>
</refsect1>
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>fdatasync</function></member>
<member><function>fflush</function></member>
</simplelist>
</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:"~/.phpdoc/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
-->