演示网址 https://262235.xyz/gettime.php
- 下载源码保存文件名
gettime.php
,如果修改文件名form action=
要对应修改
gettime.php
源码
<html>
<head>
<meta charset="utf-8">
<title>下载时间计算器</title>
</head>
<body style="text-align:center;">
<a href="https://www.262235.xyz/index.php/archives/336/">
<img src="https://262235.xyz/usr/uploads/2021/08/http://aqxbk.com/wp-content/uploads/2021/08/20210819041248-81.jpg" >
</a>
<p><p><p>
<form action="gettime.php" method="get">
下载速度(KB/s): <input type="text" name="speed">
文件大小(MB): <input type="text" name="size">
<input type="submit" value="开始计算">
</form>
<?php
$size = floatval($_GET["size"]);
$speed = floatval($_GET["speed"]);
$time = intval($size * 1024 / $speed);
if ($time > 0){
echo "下载速度: " . $speed . "(KB/s)t 文件大小: " . $size . "(MB)<br>";
echo "下载所需时间: " . $time . "秒!<br>";
echo "换算时间: ". intval($time /3600) . "小时" . intval($time % 3600 / 60 + 0.5) . "分钟";
}
?>
</body>
</html>
相关推荐: Python学习: 数字数组 和 字符窜数组 相乘
笔记内容: 数组定义操作, if for 复合语句使用, len range enumerate split 函数# 数字数组 和 字符窜数组 相乘 list1 = [1, 2, 3, 1] list2 = [‘A’, ‘B’, ‘C’, ‘End’] # 定…
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
喜欢就支持一下吧
请登录后发表评论
注册