Reputation: 161
Is it possible to get information on download and upload speed using standard PHP tools (ssh2_sftp)?
Upvotes: 0
Views: 143
Reputation: 161
$start = time();
$sftp->get('filename', 'local/filename'); //gets the file
$size = $sftp->size('filename'); //gives the size of the file.
$timeTakenInSeconds = time() - $start;
echo sprintf('Bytes/second: %d', $size / $timeTakenInSeconds);
Upvotes: 1