php判断文件是否可写:$filename = test.txt;if (is_writable($filename)) { echo The file is writable;} else { echo The file is not writable;}?>