欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

php程序导致硬盘使用空间飚升

程序员文章站 2022-06-07 19:13:22
...
这个程序瞬间导致我电脑的cpu和内存飚升,一看硬盘使用空间,也在增加,现在不知所措了,找不到使用的硬盘空间是哪些了?无法恢复到之前的硬盘空间大小,我是php初学者,希望各位大神多指教啊?求助中!!!

<html>
<head>
<META HTTP-EQUIV="CONTENT-TYPE" CONTENT="text/html; charset=utf-8">
</head>
<body>
<?php
$filename="/home/wanbo/test/file/test.txt";
if(file_exists($filename))echo "the file is there.";
else echo "there isn't such a file";
$myfile=fopen($filename,"a+");
fwrite($myfile,"hello,world");
while(!feof($myfile))
{
$mychar=fgetc($myfile);
echo $mychar;
}
fclose($myfile);
?>
</body>
</html>


以上就是php程序导致硬盘使用空间飚升的内容,更多相关内容请关注PHP中文网(www.php.cn)!

相关标签: PHP