Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我有一个 php 页面,它使用 fwrite 创建 txt 文件,然后将其上传到服务器上的目录。我还有一个 mysql 数据库,该文件的 URL 被写入,是否可以获取所述文件的文件大小并将其添加到数据库中?如果是这样,怎么做?
你可以试试filesize ()函数。
保存文件后,您知道文件的路径尝试正常获取文件大小
$filename = 'directory_upload/somefile.txt'; $filesize = filesize($filename);