Home > Backend Development > PHP Tutorial > PHP filesize有什么用

PHP filesize有什么用

PHPz
Release: 2020-09-05 11:58:31
Original
2176 people have browsed it

PHP filesize是PHP的一个内置函数,用于返回指定文件的大小,其语法是“filesize(filename)”,参数“filename”表示规定要检查的文件。

PHP filesize有什么用

PHP filesize有什么用?

PHP filesize() 函数

定义和用法

filesize() 函数返回指定文件的大小。

如果成功,该函数返回文件大小的字节数。如果失败,则返回 FALSE。

语法

filesize(filename)
Copy after login

参数

filename 必需。规定要检查的文件。

提示和注释

注释:该函数的结果会被缓存。请使用 clearstatcache() 来清除缓存。

实例

<?php
echo filesize("test.txt");
?>
Copy after login

上面的代码将输出:

20
Copy after login

更多PHP相关知识,请访问PHP中文网!

Related labels:
php
source:php.cn
Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template