以下函来@源gao*daima.com搞@代#码网搞gaodaima代码数可用于替换php内置的is_writable函数
//可用于替换php内置的is_writable函数<BR>function isWritable($filename){<BR> if(preg_match('/\/$/',$filename)){<BR> $tmp_file=sprintf('%s%s.tmp',$filename,uniqid(mt_rand()));<BR> return isWritable($tmp_file);<BR> }<BR> if(file_exists($filename)){<BR> //文件已经存在的话,使用读写方式打开<BR> $fp=@fopen($filename,'r+');<BR> if($fp){<BR> fclose($fp);<BR> return true;<BR> }<BR> else{<BR> return false;<BR> }<BR> }<BR> else{<BR> $fp=@fopen($filename,'w');<BR> if($fp){<BR> fclose($fp);<BR> unlink($filename);<BR> return true;<BR> }<BR> else{<BR> return false;<BR> }<BR> }<BR>}<BR>