ID: 13426
Updated by: sniper
Reported By: [EMAIL PROTECTED]
Old Status: Open
Status: Feedback
Bug Type: Filesystem function related
Operating System: Windows 2000 Professional
PHP Version: 4.0.6
New Comment:
So what you're saying is that using fopen with 'rb' which is
the only way to open files (on windows) in binary mode,
does not work? Is this the problem?
Because using 'r' only won't work with binary files, such
as .gif's.
--Jani
Previous Comments:
------------------------------------------------------------------------
[2001-09-25 06:14:09] [EMAIL PROTECTED]
function encode_file($sourcefile) {
if (is_readable($sourcefile)) {
$fd = fopen($sourcefile, "r");
$contents = fread($fd,filesize($sourcefile));
$encoded = chunk_split(base64_encode($contents));
fclose($fd);
}
return $encoded;
}
$source = $DOCUMENT_ROOT."/IMAGES/titolomail.gif";
encode_file($source);
fopen also don't work with "rb" option and system return a memory violation
error
------------------------------------------------------------------------
[2001-09-25 04:54:16] [EMAIL PROTECTED]
function encode_file($sourcefile) {
if (is_readable($sourcefile)) {
$fd = fopen($sourcefile, "r");
$contents .= fread($fd,filesize($sourcefile));
$encoded = chunk_split(base64_encode($contents));
fclose($fd);
}
return $encoded;
}
$source = $DOCUMENT_ROOT."/IMAGES/titolomail.gif";
encode_file($source);
fopen also don't work with "rb" option and system return a memory violation error
------------------------------------------------------------------------
Edit this bug report at http://bugs.php.net/?id=13426&edit=1
--
PHP Development Mailing List <http://www.php.net/>
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]
To contact the list administrators, e-mail: [EMAIL PROTECTED]