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

PHP filesize有什么用

PHPz
PHPzOriginal
2016-06-06 20:26:542160browse

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

PHP filesize有什么用

PHP filesize有什么用?

PHP filesize() 函数

定义和用法

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

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

语法

filesize(filename)

参数 

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

提示和注释

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

实例

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

上面的代码将输出:

20

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

Statement:
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

Related articles

See more