From db281eb817a88d33677a94a3bf22a365a4f46d84 Mon Sep 17 00:00:00 2001 From: James Moore Date: Wed, 3 Jan 2001 19:17:46 +0000 Subject: [PATCH] Fixing typos for is_writeable -> is_writable (Both are aliased in source) git-svn-id: https://svn.php.net/repository/phpdoc/en/trunk@38548 c90b9560-bf6c-de11-be94-00142212c4b1 --- functions/filesystem.xml | 14 +++++++------- 1 file changed, 7 insertions(+), 7 deletions(-) diff --git a/functions/filesystem.xml b/functions/filesystem.xml index 63d8e281ce..a04d382b40 100644 --- a/functions/filesystem.xml +++ b/functions/filesystem.xml @@ -188,7 +188,7 @@ chmod ("/somedir/somefile", 0755); // octal; correct value of mode Affected functions include stat, lstat, file_exists, - is_writeable, + is_writable, is_readable, is_executable, is_file, @@ -1749,26 +1749,26 @@ if($fp){ clearstatcache for more details. - See also is_writeable. + See also is_writable. - + - is_writeable - Tells whether the filename is writeable + is_writable + Tells whether the filename is writable Description - bool is_writeable + bool is_writable string filename - Returns true if the filename exists and is writeable. The + Returns true if the filename exists and is writable. The filename argument may be a directory name allowing you to check if a directory is writeable.