In this tutorial, you will learn how to test/detect your internet connection speed using the latest PHP version.
First of all, create a new PHP file index.php
and add the following code to it. After that open this file using a server like Apache, Nginx, etc. As you probably want to test this script in a development environment so I would recommend you to use XAMPP.
<?php $kb = 1024; echo "Streaming $kb Kb...<!-"; flush(); $time = explode(" ",microtime()); $start = $time[0] + $time[1]; for($x = 0; $x < $kb; $x++) { echo str_pad('', 1024, '.'); flush(); } $time = explode(" ",microtime()); $finish = $time[0] + $time[1]; $deltat = $finish - $start; echo "-><br />Test finished in $deltat seconds<br />"; echo "Your internet speed is ". round($kb / $deltat, 3)."Kb/s"; ?>
$kb
and set its value to 1024
. Basically, we will use this variable in a for
loop to specify the number of iterations.microtime()
function at the start and end of the for
loop to track the start/end time of the loop.$deltat
that will hold the value of “loop finish time” minus “loop start time”. It means that this variable will tell us how much time was taken by the for
loop to finish.$kb
variable with $deltat
and rounding the value to 3 decimal places using the round()
function.MiniMax-M1 is a new open-weight large language model (456 B parameters, ~46 B active) built with hybrid…
Managing Git hooks manually can quickly become tedious and error-prone—especially in fast-moving JavaScript or Node.js…
Git hooks help teams enforce code quality by automating checks at key stages like commits…
Choosing the right Git hooks manager directly impacts code quality, developer experience, and CI/CD performance.…
We evaluated the performance of Llama 3.1 vs GPT-4 models on over 150 benchmark datasets…
The manufacturing industry is undergoing a significant transformation with the advent of Industrial IoT Solutions.…