mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 08:58:56 +00:00
- Added the FILE_TEXT and FILE_BINARY constants
- Put the "since PHP x.y" statements in parentheses git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@241490 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
c3241fb8b4
commit
35be93c82e
1 changed files with 29 additions and 6 deletions
|
@ -1,5 +1,5 @@
|
|||
<?xml version='1.0' encoding='iso-8859-1'?>
|
||||
<!-- $Revision: 1.6 $ -->
|
||||
<!-- $Revision: 1.7 $ -->
|
||||
<section xml:id="filesystem.constants" xmlns="http://docbook.org/ns/docbook">
|
||||
&reftitle.constants;
|
||||
&extension.constants;
|
||||
|
@ -121,8 +121,8 @@
|
|||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Since PHP 5.0.0. Search for <parameter>filename</parameter> in
|
||||
<link linkend="ini.include-path">include_path</link>.
|
||||
Search for <parameter>filename</parameter> in
|
||||
<link linkend="ini.include-path">include_path</link> (since PHP 5).
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -133,7 +133,7 @@
|
|||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
|
||||
Append content to existing file.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -144,7 +144,7 @@
|
|||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Since PHP 5.0.0. Strips EOL characters.
|
||||
Strip EOL characters (since PHP 5).
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
@ -155,11 +155,34 @@
|
|||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Since PHP 5.0.0. Skips empty lines.
|
||||
Skip empty lines (since PHP 5).
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>
|
||||
<constant>FILE_BINARY</constant>
|
||||
(<type>integer</type>)
|
||||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Binary mode (since PHP 6).
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
|
||||
<varlistentry>
|
||||
<term>
|
||||
<constant>FILE_TEXT</constant>
|
||||
(<type>integer</type>)
|
||||
</term>
|
||||
<listitem>
|
||||
<simpara>
|
||||
Text mode (since PHP 6).
|
||||
</simpara>
|
||||
</listitem>
|
||||
</varlistentry>
|
||||
</variablelist>
|
||||
</section>
|
||||
|
||||
|
|
Loading…
Reference in a new issue