mirror of
https://github.com/php/doc-ru.git
synced 2026-03-24 07:42:22 +01:00
167 lines
5.8 KiB
XML
167 lines
5.8 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<!-- EN-Revision: 86e6094e86b84a51d00ab217ac50ce8dde33d82a Maintainer: tmn Status: ready -->
|
||
<!-- Reviewed: no -->
|
||
|
||
<refentry xml:id="streamwrapper.stream-metadata" xmlns="http://docbook.org/ns/docbook" xmlns:xlink="http://www.w3.org/1999/xlink">
|
||
<refnamediv>
|
||
<refname>streamWrapper::stream_metadata</refname>
|
||
<refpurpose>Изменяет метаданные потока</refpurpose>
|
||
</refnamediv>
|
||
|
||
<refsect1 role="description">
|
||
&reftitle.description;
|
||
<methodsynopsis>
|
||
<modifier>public</modifier> <type>bool</type><methodname>streamWrapper::stream_metadata</methodname>
|
||
<methodparam><type>string</type><parameter>path</parameter></methodparam>
|
||
<methodparam><type>int</type><parameter>option</parameter></methodparam>
|
||
<methodparam><type>mixed</type><parameter>value</parameter></methodparam>
|
||
</methodsynopsis>
|
||
<para>
|
||
Этот метод вызывается для установки метаданных потока. Он работает, когда
|
||
над URL потока выполняется одна из следующих операций:
|
||
<simplelist>
|
||
<member><function>touch</function></member>
|
||
<member><function>chmod</function></member>
|
||
<member><function>chown</function></member>
|
||
<member><function>chgrp</function></member>
|
||
</simplelist>
|
||
Следует помнить, что некоторые из этих операций могут быть
|
||
недоступны в вашей системе.
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="parameters">
|
||
&reftitle.parameters;
|
||
<para>
|
||
<variablelist>
|
||
<varlistentry>
|
||
<term><parameter>path</parameter></term>
|
||
<listitem>
|
||
<para>
|
||
Путь к файлу или URL для задания метаданных. URL должен быть отделен символами
|
||
:// Другие форматы URL не поддерживаются.
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
<varlistentry>
|
||
<term><parameter>option</parameter></term>
|
||
<listitem>
|
||
<para>
|
||
Одно из значений:
|
||
<simplelist>
|
||
<member><constant>STREAM_META_TOUCH</constant>
|
||
(Метод вызывается в результате вызова <function>touch</function>)</member>
|
||
<member><constant>STREAM_META_OWNER_NAME</constant>
|
||
(Метод вызывается в результате вызова <function>chown</function>
|
||
со строковым аргументом)</member>
|
||
<member><constant>STREAM_META_OWNER</constant>
|
||
(Метод вызывается в результате вызова <function>chown</function>)</member>
|
||
<member><constant>STREAM_META_GROUP_NAME</constant>
|
||
(Метод вызывается в результате вызова <function>chgrp</function>)</member>
|
||
<member><constant>STREAM_META_GROUP</constant>
|
||
(Метод вызывается в результате вызова <function>chgrp</function>)</member>
|
||
<member><constant>STREAM_META_ACCESS</constant>
|
||
(Метод вызывается в результате вызова <function>chmod</function>)</member>
|
||
</simplelist>
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
<varlistentry>
|
||
<term><parameter>value</parameter></term>
|
||
<listitem>
|
||
<para>
|
||
Если <parameter>option</parameter> принимает значение
|
||
<simplelist>
|
||
<member>
|
||
<constant>STREAM_META_TOUCH</constant>:
|
||
Массив (<type>Array</type>) состоящий из двух аргументов функции
|
||
<function>touch</function>.
|
||
</member>
|
||
<member>
|
||
<constant>STREAM_META_OWNER_NAME</constant> или
|
||
<constant>STREAM_META_GROUP_NAME</constant>:
|
||
Имя владельца/группы в виде строки (<type>string</type>).
|
||
</member>
|
||
<member>
|
||
<constant>STREAM_META_OWNER</constant> или
|
||
<constant>STREAM_META_GROUP</constant>:
|
||
Значение владельца/группу в виде целого числа (<type>int</type>).
|
||
</member>
|
||
<member>
|
||
<constant>STREAM_META_ACCESS</constant>: Аргумент функции
|
||
<function>chmod</function> в виде целого числа (<type>int</type>).
|
||
</member>
|
||
</simplelist>
|
||
</para>
|
||
</listitem>
|
||
</varlistentry>
|
||
</variablelist>
|
||
</para>
|
||
</refsect1>
|
||
|
||
<refsect1 role="returnvalues">
|
||
&reftitle.returnvalues;
|
||
<para>
|
||
&return.success;
|
||
Если <parameter>option</parameter> не реализован, метод должен вернуть &false;.
|
||
</para>
|
||
</refsect1>
|
||
|
||
<!--
|
||
<refsect1 role="examples">
|
||
&reftitle.examples;
|
||
<para>
|
||
<example>
|
||
<title><function>streamWrapper::stream_set_option</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>touch</function></member>
|
||
<member><function>chmod</function></member>
|
||
<member><function>chown</function></member>
|
||
<member><function>chgrp</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
|
||
-->
|