1
0
mirror of https://github.com/php/doc-ru.git synced 2026-03-24 07:42:22 +01:00
Files
Sergey Panteleev daef8df962 Обнуление тега Reviewed (#364)
[skip-lint]
[skip-spellcheck]
2021-11-16 13:03:53 +03:00

139 lines
3.8 KiB
XML

<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: fa5ef560a6ea59e32de1e383969ac728526a1335 Maintainer: tmn Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="streamwrapper.stream-lock" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
<refnamediv>
<refname>streamWrapper::stream_lock</refname>
<refpurpose>Консультативная блокировка файла</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<methodsynopsis>
<modifier>public</modifier> <type>bool</type><methodname>streamWrapper::stream_lock</methodname>
<methodparam><type>int</type><parameter>operation</parameter></methodparam>
</methodsynopsis>
<para>
Этот метод вызывается в ответ на
<function>flock</function>, когда вызывается
<function>file_put_contents</function> (если <parameter>flags</parameter>
содержит <constant>LOCK_EX</constant>),
<function>stream_set_blocking</function> или при закрытии потока
(<constant>LOCK_UN</constant>).
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>operation</parameter></term>
<listitem>
<para>
<parameter>operation</parameter> может принимать одно из
следующих значений:
<itemizedlist>
<listitem>
<simpara>
<constant>LOCK_SH</constant> установить общую блокировку (для чтения).
</simpara>
</listitem>
<listitem>
<simpara>
<constant>LOCK_EX</constant> установить эксклюзивную блокировку (для записи).
</simpara>
</listitem>
<listitem>
<simpara>
<constant>LOCK_UN</constant> снять блокировку (общую или эксклюзивную).
</simpara>
</listitem>
<listitem>
<simpara>
<constant>LOCK_NB</constant>, если вы не хотите, чтобы
<function>flock</function> не блокировался во время работы.
(не поддерживается в Windows)
</simpara>
</listitem>
</itemizedlist>
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="returnvalues">
&reftitle.returnvalues;
<para>
&return.success;
</para>
</refsect1>
<refsect1 role="errors"><!-- {{{ -->
&reftitle.errors;
<para>
Вызывает ошибку <constant>E_WARNING</constant>, если вызов метода не удался
(то есть метод не реализован).
</para>
</refsect1><!-- }}} -->
<!--
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title><function>streamWrapper::stream_lock</function> example</title>
<programlisting role="php">
<![CDATA[
<?php
/* ... */
?>
]]>
</programlisting>
&example.outputs.similar;
<screen>
<![CDATA[
...
]]>
</screen>
</example>
</para>
</refsect1>
-->
<refsect1 role="seealso">
&reftitle.seealso;
<para>
<simplelist>
<member><function>stream_set_blocking</function></member>
<member><function>flock</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
-->