由买买提看人间百态

boards

本页内容为未名空间相应帖子的节选和存档,一周内的贴子最多显示50字,超过一周显示500字 访问原贴
Programming版 - php写文件的奇怪错误
相关主题
Interface segregation principle似乎没啥意义啊求助:关于指针和数据存储
node.js里面,哪些操作用http,哪些用websocket(tcp) ?New C++ programmer, need to ask a I/O file read question
help with PHP programming!!! (转载) 求助:关于文件夹和文件的读写
fprintf in C\C++open an image file
C语言程序静态库和动态库的创建及其应用a C/C++ fopen mode question
请问如何恢复正常的IO?c++产生随机数
Question of building apache module.怎样读一个不断更新的文件
Path with non-ascii characterask a question about struct in C programming
相关话题的讨论汇总
话题: echo话题: file话题: 文件话题: php话题: testing
进入Programming版参与讨论
1 (共1页)
i**p
发帖数: 8
1
代码这样:
if (is_writable("test.txt"))
{
echo "writeable";
$file = fopen("test.txt","w");
echo fwrite($file,"Hello World. Testing!");
fclose($file);
}
else
{
echo "we cannot write";
}
?>
结果是:
writable0
文件为何没有写入呢?硬盘上文件已经创建成功,大小为0。
g**e
发帖数: 6127
2
writeable21 is what I got

【在 i**p 的大作中提到】
: 代码这样:
: : if (is_writable("test.txt"))
: {
: echo "writeable";
: $file = fopen("test.txt","w");
: echo fwrite($file,"Hello World. Testing!");
: fclose($file);
: }
: else

1 (共1页)
进入Programming版参与讨论
相关主题
ask a question about struct in C programmingC语言程序静态库和动态库的创建及其应用
请教Matlab和IDL的处理数据能力差异请问如何恢复正常的IO?
4G text file哪种软件可以读?(除了ultraedit)Question of building apache module.
c++ 能够一次打开多个文本文件读数据么?Path with non-ascii character
Interface segregation principle似乎没啥意义啊求助:关于指针和数据存储
node.js里面,哪些操作用http,哪些用websocket(tcp) ?New C++ programmer, need to ask a I/O file read question
help with PHP programming!!! (转载) 求助:关于文件夹和文件的读写
fprintf in C\C++open an image file
相关话题的讨论汇总
话题: echo话题: file话题: 文件话题: php话题: testing