当前位置:Gxlcms > PHP教程 > php程序导致硬盘使用空间飚升

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

时间:2021-07-01 10:21:17 帮助过:8人阅读

这个程序瞬间导致我电脑的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.gxlcms.com)!

人气教程排行