php.net |  support |  documentation |  report a bug |  advanced search |  search howto |  statistics |  random bug |  login
Bug #13256 Remote File Size / Attribute
Submitted: 2001-09-11 21:01 UTC Modified: 2001-09-12 01:18 UTC
From: eko at softhome dot net Assigned:
Status: Not a bug Package: Filesystem function related
PHP Version: 4.0.6 OS: Windows & Linux
Private report: No CVE-ID: None
Welcome back! If you're the original bug submitter, here's where you can edit the bug or add additional notes.
If you forgot your password, you can retrieve your password here.
Password:
Status:
Package:
Bug Type:
Summary:
From: eko at softhome dot net
New email:
PHP Version: OS:

 

 [2001-09-11 21:01 UTC] eko at softhome dot net
I need to know the file size of remote file, but never be able to do it.

One of the my example PHP Script:

<?php
     $location = "http://www.blockm.com/admin.gif";
     $fp = fopen($location,"w");
     //$fp = file_exists($location);
     if(!$fp) {$message = "File not found";}
     else {$message = "File Found";
           $temp = fstat($location);
           $image = GetImageSize ($location);
     }
     echo "$message<br>";
     echo "File Size: " . $temp[7] . "<br>";
     echo "Image Size: $image[3]<br>";
     fclose($fp);
?>

The above script can working properly for reading local file.

NB: I am doing project for Banner exchange. I want to
put all the banner immage on remote Server. 

Regards
Eko

Patches

Pull Requests

History

AllCommentsChangesGit/SVN commitsRelated reports
 [2001-09-12 01:18 UTC] derick@php.net
Ask for support questions on the php-general@lists.php.net mailing list.

Derick
 
PHP Copyright © 2001-2025 The PHP Group
All rights reserved.
Last updated: Thu May 08 00:01:29 2025 UTC