gpt4 book ai didi

php - PHP 中显示零字节文件的消息

转载 作者:太空宇宙 更新时间:2023-11-04 05:21:55 25 4
gpt4 key购买 nike

我在 /nrt/www/AAAA/RRRR/ 目录下有 0 字节 文件(假设 anil.txt)。

现在我需要一个PHP脚本,我需要在其中检查anil.txt文件,如果它是0字节文件,那么我需要显示消息。

最佳答案

您应该使用filesize函数。您是新手,因此我在这里添加代码,但下次请先编写一些代码,然后您可以寻求我们的帮助。

示例代码:

<?php
$size = filesize('path/to/your/file');

if ($size === 0) {
//do something here
}

关于php - PHP 中显示零字节文件的消息,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/40421105/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com