Date: 10/23/00
- Next message: kori_mail <email protected>: "[PHP-DEV] PHP 4.0 Bug #7447: BCC or CC does not work"
- Previous message: Jorge Cisneros Flores: "[PHP-DEV] Re: PHP 4.0 Bug #7380 Updated: the function passthru is bad!!!!!!!!"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]
From: adam <email protected>
Operating system: Any
PHP version: 4.0.3pl1
PHP Bug Type: Feature/Change Request
Bug description: Mac WWW upload error FIX
I found the following bit of code for removing the data fork from a file uploaded via www by a Mac so that the file uploaded is usable. Trouble is it's in PERL and I want to run it directly from PHP. So, my question is two fold:
1) Would it be possible for someone to translate it from PERL -> PHP
2) Would it be possible to add this code into PHP to solve the Mac upload problem once and for all?
Here's a copy of the code:
--------------------------
The following subroutine "extracts the data fork (what most people would call the real file contents) from the middle of the macbinary encapsulation (which also includes the resource fork and some metadata like type and creator). I got this code off the net, so if it's not entirely accurate, I'm sure one of you will tell me. Basically, the first 128 bytes appears to be a header, and bytes 84 through 87 appear to be a network-order integer value of how many bytes immediately following the header constitute the datafork. So, with the right manipulation, I'm done."
sub strip_fork_from_fh {
my $fh = shift;
my $len = read $fh, (my $buf), 128; # read the header
die "short read: $len" unless $len == 128;
my $bytes = unpack("x83N", $buf); # get datafork length
read $fh, $buf, $bytes;
$buf;
}
You can view the article I found the code from at http://www.stonehenge.com/merlyn/WebTechniques/col46.html
-- Edit Bug report at: http://bugs.php.net/?id=7418&edit=1-- PHP Development Mailing List <http://www.php.net/> To unsubscribe, e-mail: php-dev-unsubscribe <email protected> For additional commands, e-mail: php-dev-help <email protected> To contact the list administrators, e-mail: php-list-admin <email protected>
- Next message: kori_mail <email protected>: "[PHP-DEV] PHP 4.0 Bug #7447: BCC or CC does not work"
- Previous message: Jorge Cisneros Flores: "[PHP-DEV] Re: PHP 4.0 Bug #7380 Updated: the function passthru is bad!!!!!!!!"
- Messages sorted by: [ date ] [ thread ] [ subject ] [ author ]

