|
php.net | support | documentation | report a bug | advanced search | search howto | statistics | random bug | login |
[2006-11-12 06:49 UTC] j dot finlay at optusnet dot com dot au
Description:
------------
According to the documentation, filesize() supports wrappers that also support stat().
This seems to be false with both PHP 5.1.6, and 5.2.1-dev.
Unfortunately this function does not work as expected with FTP URLs. See the reproducable code for an example.
However, the manual states that "As of PHP 5.0.0 this function can also be used with some URL wrappers. Refer to Appendix M, List of Supported Protocols/Wrappers for a listing of which wrappers support stat() family of functionality."
From the manual, in regards to "Appendix M, List of Supported Protocols/Wrappers" in the "FTP and FTPS" section: "Supports stat() No As of PHP 5.0.0: filesize(), filetype(), file_exists(), is_file(), and is_dir() elements only. As of PHP 5.1.0: filemtime()."
Reproduce code:
---------------
<?php
print filesize("http://au2.php.net/distributions/php-5.2.0.tar.bz2")."\n";
?>
Expected result:
----------------
6789838
Actual result:
--------------
Warning: filesize(): stat failed for http://au2.php.net/distributions/php-5.2.0.tar.bz2
PatchesPull RequestsHistoryAllCommentsChangesGit/SVN commits
|
|||||||||||||||||||||||||||
Copyright © 2001-2025 The PHP GroupAll rights reserved. |
Last updated: Mon Nov 10 21:00:01 2025 UTC |
Works for me: PHP 5.2.1-dev CLI Ubuntu 6.10 php -r "echo filesize('ftp://ftp2.au.netbsd.org/pub/php/php-5.1.1.tar.bz2');"root@phpos:~> php -v PHP 5.2.1-dev (cli) (built: Nov 2 2006 20:59:28) Copyright (c) 1997-2006 The PHP Group Zend Engine v2.2.0, Copyright (c) 1998-2006 Zend Technologies root@phpos:~> php -r "echo filesize('ftp://ftp2.au.netbsd.org/pub/php/php-5.1.1.tar.bz2');" Warning: filesize(): stat failed for ftp://ftp2.au.netbsd.org/pub/php/php-5.1.1.tar.bz2 in Command line code on line 2 root@phpos:~>