PHP sftp - 我可以获得 download/upload 速度吗?

PHP sftp - can i get download/upload speed?

是否可以使用标准 PHP 工具 (ssh2_sftp) 获取有关下载和上传速度的信息?

$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);