这是在运行 iis7 的 Windows Small Business Server 2011 Essentials 上
以下代码总是返回“无法写入”
<?php
$myFile = "http://www.ascbits.com/test/test.txt";
if (is_writable($myFile)) {
$fh = fopen($myFile, 'a');
}else{
die("unable to write");
}
$body = "test ";
fwrite($fh, $body);
fclose($fh);
?>
我已经检查了文件的权限,看起来我应该能够写入它。
有什么建议么?