From 2714644d0eeebbb86255ddae3e7a599eb85cc565 Mon Sep 17 00:00:00 2001 From: "Jesus M. Castagnetto" Date: Wed, 1 Nov 2000 22:41:01 +0000 Subject: [PATCH] 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 --- functions/filesystem.xml | 56 ++++++++++++++++++++-------------------- 1 file changed, 28 insertions(+), 28 deletions(-) diff --git a/functions/filesystem.xml b/functions/filesystem.xml index bbeb149e11..9da4a103ae 100644 --- a/functions/filesystem.xml +++ b/functions/filesystem.xml @@ -986,30 +986,30 @@ $fcontents = join ('', file ('http://www.php.net')); - To acquire a shared lock (reader), set - operation to LOCK_SH (set to 1 prior to - PHP 4.0.1). + To acquire a shared lock (reader), set + operation to LOCK_SH (set to 1 prior to + PHP 4.0.1). - To acquire an exclusive lock (writer), set - operation to LOCK_EX (set to 2 prior to - PHP 4.0.1). + To acquire an exclusive lock (writer), set + operation to LOCK_EX (set to 2 prior to + PHP 4.0.1). - To release a lock (shared or exclusive), set - operation to LOCK_UN (set to 3 prior to - PHP 4.0.1). + To release a lock (shared or exclusive), set + operation to LOCK_UN (set to 3 prior to + PHP 4.0.1). - If you don't want flock to block while - locking, add LOCK_NB (4 prior to PHP 4.0.1) to - operation. + If you don't want flock to block while + locking, add LOCK_NB (4 prior to PHP 4.0.1) to + operation. @@ -1095,42 +1095,42 @@ $fcontents = join ('', file ('http://www.php.net')); - '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. - '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. - '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. - '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. - '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. - '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.