1
0
mirror of https://github.com/php/doc-ru.git synced 2026-03-26 00:32:15 +01:00
Files
archived-doc-ru/reference/phar/PharFileInfo/construct.xml
Sergey Panteleev 6d43fd64d7 Исправление форматирования
[skip-spellcheck]
[skip-lint]
2022-12-27 03:42:36 +03:00

116 lines
3.6 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?xml version="1.0" encoding="utf-8"?>
<!-- EN-Revision: f03806fcd8fe03a0501bd40b6e3939ff6589a1d2 Maintainer: rjhdby Status: ready -->
<!-- Reviewed: no -->
<refentry xml:id="pharfileinfo.construct" xmlns="http://docbook.org/ns/docbook">
<refnamediv>
<refname>PharFileInfo::__construct</refname>
<refpurpose>Конструктор объекта PharFileInfo</refpurpose>
</refnamediv>
<refsect1 role="description">
&reftitle.description;
<constructorsynopsis role="PharFileInfo">
<modifier>public</modifier> <methodname>PharFileInfo::__construct</methodname>
<methodparam><type>string</type><parameter>filename</parameter></methodparam>
</constructorsynopsis>
<para>
Не должен вызываться напрямую. Объект PharFileInfo следует
инициализировать с помощью <function>Phar::offsetGet</function>,
используя синтаксис доступа к массиву.
</para>
</refsect1>
<refsect1 role="parameters">
&reftitle.parameters;
<para>
<variablelist>
<varlistentry>
<term><parameter>filename</parameter></term>
<listitem>
<para>
Полный URL файла. Если вы хотите извлечь файл
<literal>my/file.php</literal> из архива <literal>boo.phar</literal>,
необходимо задать <literal>phar://boo.phar/my/file.php</literal>.
</para>
</listitem>
</varlistentry>
</variablelist>
</para>
</refsect1>
<refsect1 role="errors">
&reftitle.errors;
<para>
Выбрасывает исключение <classname>BadMethodCallException</classname>, если
<link linkend="object.construct">__construct()</link> вызван дважды.
Выбрасывает исключение <classname>UnexpectedValueException</classname>, если
запрошенный URL некорректен, phar-архив невозможно открыть либо если указанный
файл отсутствует в архиве.
</para>
</refsect1>
<refsect1 role="examples">
&reftitle.examples;
<para>
<example>
<title>Пример использования <function>PharFileInfo::__construct</function></title>
<para>
</para>
<programlisting role="php">
<![CDATA[
<?php
try {
$p = new Phar('/path/to/my.phar', 0, 'my.phar');
$p['testfile.txt'] = "hi\nthere\ndude";
$file = $p['testfile.txt'];
foreach ($file as $line => $text) {
echo "номер строки $line: $text";
}
// так то же работает
$file = new PharFileInfo('phar:///path/to/my.phar/testfile.txt');
foreach ($file as $line => $text) {
echo "номер строки $line: $text";
}
} catch (Exception $e) {
echo 'Операции Phar завершились ошибкой;
}
?>
]]>
</programlisting>
&example.outputs;
<screen>
<![CDATA[
номер строки 1: hi
номер строки 2: there
номер строки 3: dude
номер строки 1: hi
номер строки 2: there
номер строки 3: dude
]]>
</screen>
</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:"~/.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
-->