in reply to Re: CGI hook
in thread CGI hook
I don't think there's any provision in CGI.pm's new function for a coderef as argument.
You should have checked the docs before replying.
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 [,$use_tempfile]]); sub hook { my ($filename, $buffer, $bytes_read, $data) = @_; print "Read $bytes_read bytes of $filename\n"; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: CGI hook
by Zaxo (Archbishop) on Aug 08, 2006 at 03:23 UTC | |
by cees (Curate) on Aug 08, 2006 at 04:27 UTC | |
by imp (Priest) on Aug 08, 2006 at 03:47 UTC | |
by rhesa (Vicar) on Aug 08, 2006 at 03:36 UTC |