mirror of
https://github.com/sigmasternchen/php-doc-en
synced 2025-03-16 00:48:54 +00:00
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
This commit is contained in:
parent
031a9d0dfa
commit
db281eb817
1 changed files with 7 additions and 7 deletions
|
@ -188,7 +188,7 @@ chmod ("/somedir/somefile", 0755); // octal; correct value of mode
|
|||
Affected functions include <function>stat</function>,
|
||||
<function>lstat</function>,
|
||||
<function>file_exists</function>,
|
||||
<function>is_writeable</function>,
|
||||
<function>is_writable</function>,
|
||||
<function>is_readable</function>,
|
||||
<function>is_executable</function>,
|
||||
<function>is_file</function>,
|
||||
|
@ -1749,26 +1749,26 @@ if($fp){
|
|||
<function>clearstatcache</function> for more details.
|
||||
</para>
|
||||
<para>
|
||||
See also <function>is_writeable</function>.
|
||||
See also <function>is_writable</function>.
|
||||
</para>
|
||||
</refsect1>
|
||||
</refentry>
|
||||
|
||||
<refentry id="function.is-writeable">
|
||||
<refentry id="function.is-writable">
|
||||
<refnamediv>
|
||||
<refname>is_writeable</refname>
|
||||
<refpurpose>Tells whether the filename is writeable</refpurpose>
|
||||
<refname>is_writable</refname>
|
||||
<refpurpose>Tells whether the filename is writable</refpurpose>
|
||||
</refnamediv>
|
||||
<refsect1>
|
||||
<title>Description</title>
|
||||
<funcsynopsis>
|
||||
<funcprototype>
|
||||
<funcdef>bool <function>is_writeable</function></funcdef>
|
||||
<funcdef>bool <function>is_writable</function></funcdef>
|
||||
<paramdef>string <parameter>filename</parameter></paramdef>
|
||||
</funcprototype>
|
||||
</funcsynopsis>
|
||||
<para>
|
||||
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.
|
||||
</para>
|
||||
|
|
Loading…
Reference in a new issue