1--TEST--
2Test is_writable() and its alias is_writeable() function: error conditions
3--FILE--
4<?php
5echo "\n*** Testing is_writable() on non-existent file ***\n";
6var_dump( is_writable(__DIR__."/is_writable") );
7var_dump( is_writeable(__DIR__."/is_writable") );
8
9echo "Done\n";
10?>
11--EXPECT--
12*** Testing is_writable() on non-existent file ***
13bool(false)
14bool(false)
15Done
16