mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-23 04:18:56 +00:00
114 lines
3.1 KiB
XML
114 lines
3.1 KiB
XML
![]() |
<?xml version="1.0" encoding="iso-8859-1"?>
|
||
|
<!-- $Revision: 1.1 $ -->
|
||
|
<refentry id="function.Phar-construct">
|
||
|
<refnamediv>
|
||
|
<refname>Phar::__construct</refname>
|
||
|
<refpurpose>Construct a Phar archive object</refpurpose>
|
||
|
</refnamediv>
|
||
|
<refsect1 role="description">
|
||
|
&reftitle.description;
|
||
|
<methodsynopsis>
|
||
|
<type>void</type><methodname>Phar::__construct</methodname>
|
||
|
<methodparam><type>string</type><parameter>fname</parameter></methodparam>
|
||
|
<methodparam choice="opt"><type>int</type><parameter>flags</parameter></methodparam>
|
||
|
<methodparam choice="opt"><type>string</type><parameter>alias</parameter></methodparam>
|
||
|
</methodsynopsis>
|
||
|
|
||
|
</refsect1>
|
||
|
<refsect1 role="parameters">
|
||
|
&reftitle.parameters;
|
||
|
<para>
|
||
|
<variablelist>
|
||
|
<varlistentry>
|
||
|
<term><parameter>fname</parameter></term>
|
||
|
<listitem>
|
||
|
<para>
|
||
|
Path to an existing Phar archive, or if the
|
||
|
<link linkend="ini.phar.readonly">phar.readonly</link> INI
|
||
|
variable is set to "0",
|
||
|
</para>
|
||
|
</listitem>
|
||
|
</varlistentry>
|
||
|
<varlistentry>
|
||
|
<term><parameter>flags</parameter></term>
|
||
|
<listitem>
|
||
|
<para>
|
||
|
flags to pass to parent class <classname>RecursiveDirectoryIterator</classname>.
|
||
|
See <ulink url="http://www.php.net/~helly/php/ext/spl/classRecursiveDirectoryIterator.html#be0e1176d512c66500e5c26f248c89c4">SPL RecursiveDirectoryIterator docs</ulink>
|
||
|
</para>
|
||
|
</listitem>
|
||
|
</varlistentry>
|
||
|
<varlistentry>
|
||
|
<term><parameter>alias</parameter></term>
|
||
|
<listitem>
|
||
|
<para>
|
||
|
Alias with which this Phar archive should be referred to in calls to stream
|
||
|
functionality.
|
||
|
</para>
|
||
|
</listitem>
|
||
|
</varlistentry>
|
||
|
</variablelist>
|
||
|
</para>
|
||
|
</refsect1>
|
||
|
|
||
|
<refsect1 role="errors">
|
||
|
&reftitle.errors;
|
||
|
<para>
|
||
|
Throws BadMethodCallException if called twice, UnexpectedValueException
|
||
|
if the phar archive can't be opened.
|
||
|
</para>
|
||
|
</refsect1>
|
||
|
|
||
|
|
||
|
<refsect1 role="examples">
|
||
|
&reftitle.examples;
|
||
|
<para>
|
||
|
<example>
|
||
|
<title>A <function>Phar::__construct</function> example</title>
|
||
|
<para>
|
||
|
<programlisting role="php">
|
||
|
<![CDATA[
|
||
|
<?php
|
||
|
try {
|
||
|
$p = new Phar('/path/to/my.phar', CURRENT_AS_FILEINFO | KEY_AS_FILENAME,
|
||
|
'my.phar');
|
||
|
} catch (UnexpectedValueException $e) {
|
||
|
die('Could not open my.phar');
|
||
|
} catch (BadMethodCallException $e) {
|
||
|
echo 'technically, this cannot happen';
|
||
|
}
|
||
|
// this works now
|
||
|
echo file_get_contents('phar://my.phar/example.txt');
|
||
|
// and works as if we had typed
|
||
|
echo file_get_contents('phar:///path/to/my.phar/example.txt');
|
||
|
?>
|
||
|
]]>
|
||
|
</programlisting>
|
||
|
</para>
|
||
|
</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
|
||
|
-->
|