2 Test is_writable() and its alias is_writeable() function: error conditions
5 /* Prototype: bool is_writable ( string $filename );
6 Description: Tells whether the filename is writable.
8 is_writeable() is an alias of is_writable()
11 echo "\n*** Testing is_writable() on non-existent file ***\n";
12 var_dump( is_writable(__DIR__."/is_writable") );
13 var_dump( is_writeable(__DIR__."/is_writable") );
18 *** Testing is_writable() on non-existent file ***