簡體   English   中英

PHP sftp - 我可以獲得下載/上傳速度嗎?

[英]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);

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM