Leser: 3
![]() |
![]() |
7 Einträge, 1 Seite |
IPC::System::Simple,
Path::Class1
2
3
4
5
6
7
8
9
10
11
12
You can set up a callback that will be called whenever a file upload is being read during the
form processing. This is much like the UPLOAD_HOOK facility available in Apache::Request, with
the exception that the first argument to the callback is an Apache::Upload object, here it's the
remote filename.
$q = CGI->new(\&hook,$data);
sub hook
{
my ($filename, $buffer, $bytes_read, $data) = @_;
print "Read $bytes_read bytes of $filename\n";
}
Wie frage ich & perlintro
brian's Leitfaden für jedes Perl-Problem![]() |
![]() |
7 Einträge, 1 Seite |