mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
Fixing indentation from the tabs to space conversion (my VIM does it
automatically). Do not use tabs please. git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@35021 c90b9560-bf6c-de11-be94-00142212c4b1
This commit is contained in:
parent
bb70145119
commit
2714644d0e
1 changed files with 28 additions and 28 deletions
|
@ -986,30 +986,30 @@ $fcontents = join ('', file ('http://www.php.net'));
|
|||
<itemizedlist>
|
||||
<listitem>
|
||||
<simpara>
|
||||
To acquire a shared lock (reader), set
|
||||
<parameter>operation</parameter> to LOCK_SH (set to 1 prior to
|
||||
PHP 4.0.1).
|
||||
To acquire a shared lock (reader), set
|
||||
<parameter>operation</parameter> to LOCK_SH (set to 1 prior to
|
||||
PHP 4.0.1).
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
To acquire an exclusive lock (writer), set
|
||||
<parameter>operation</parameter> to LOCK_EX (set to 2 prior to
|
||||
PHP 4.0.1).
|
||||
To acquire an exclusive lock (writer), set
|
||||
<parameter>operation</parameter> to LOCK_EX (set to 2 prior to
|
||||
PHP 4.0.1).
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
To release a lock (shared or exclusive), set
|
||||
<parameter>operation</parameter> to LOCK_UN (set to 3 prior to
|
||||
PHP 4.0.1).
|
||||
To release a lock (shared or exclusive), set
|
||||
<parameter>operation</parameter> to LOCK_UN (set to 3 prior to
|
||||
PHP 4.0.1).
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
If you don't want <function>flock</function> to block while
|
||||
locking, add LOCK_NB (4 prior to PHP 4.0.1) to
|
||||
<parameter>operation</parameter>.
|
||||
If you don't want <function>flock</function> to block while
|
||||
locking, add LOCK_NB (4 prior to PHP 4.0.1) to
|
||||
<parameter>operation</parameter>.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
@ -1095,42 +1095,42 @@ $fcontents = join ('', file ('http://www.php.net'));
|
|||
<itemizedlist>
|
||||
<listitem>
|
||||
<simpara>
|
||||
'r' - Open for reading only; place the file pointer at the
|
||||
beginning of the file.
|
||||
'r' - Open for reading only; place the file pointer at the
|
||||
beginning of the file.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
'r+' - Open for reading and writing; place the file pointer at
|
||||
the beginning of the file.
|
||||
'r+' - Open for reading and writing; place the file pointer at
|
||||
the beginning of the file.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
'w' - Open for writing only; place the file pointer at the
|
||||
beginning of the file and truncate the file to zero length.
|
||||
If the file does not exist, attempt to create it.
|
||||
'w' - Open for writing only; place the file pointer at the
|
||||
beginning of the file and truncate the file to zero length.
|
||||
If the file does not exist, attempt to create it.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
'w+' - Open for reading and writing; place the file pointer at
|
||||
the beginning of the file and truncate the file to zero
|
||||
length. If the file does not exist, attempt to create it.
|
||||
'w+' - Open for reading and writing; place the file pointer at
|
||||
the beginning of the file and truncate the file to zero
|
||||
length. If the file does not exist, attempt to create it.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
'a' - Open for writing only; place the file pointer at the end
|
||||
of the file. If the file does not exist, attempt to create
|
||||
it.
|
||||
'a' - Open for writing only; place the file pointer at the end
|
||||
of the file. If the file does not exist, attempt to create
|
||||
it.
|
||||
</simpara>
|
||||
</listitem>
|
||||
<listitem>
|
||||
<simpara>
|
||||
'a+' - Open for reading and writing; place the file pointer at
|
||||
the end of the file. If the file does not exist, attempt to
|
||||
create it.
|
||||
'a+' - Open for reading and writing; place the file pointer at
|
||||
the end of the file. If the file does not exist, attempt to
|
||||
create it.
|
||||
</simpara>
|
||||
</listitem>
|
||||
</itemizedlist>
|
||||
|
|
Loading…
Reference in a new issue