Guess you don't really have a choice at the moment. Try timing how long it takes to unzip with code like this.
$time = microtime();
// Unzip file here
$time2 = microtime();
$time = explode(" ", $time);
$time2 = explode(" ", $time2);
echo(($time2[1] - $time[1]) + ($time2[0] - $time[0]));