【发布时间】:2021-03-10 00:02:14
【问题描述】:
是否可以使用标准 PHP 工具 (ssh2_sftp) 获取有关下载和上传速度的信息?
【问题讨论】:
是否可以使用标准 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);
【讨论】: