首页 > 解决方案 > PHP sftp - 我可以获得下载/上传速度吗?

问题描述

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

标签: phppearpecl

解决方案


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

推荐阅读