Dima Kuzmin
Dima Kuzmin

Reputation: 161

PHP sftp - can i get download/upload speed?

Is it possible to get information on download and upload speed using standard PHP tools (ssh2_sftp)?

Upvotes: 0

Views: 143

Answers (1)

Dima Kuzmin
Dima Kuzmin

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

Related Questions