Jump to content

Quickie Query


dagnasty

Recommended Posts

200 times is nothing for a script. I wrote this quick looping 500 times and it returned in less than a second
[code]<?php
<?
for($i=20000; $i<=20500; $i++){
$newnumber = ($i / 10.6);
echo round($newnumber, 2)."<br>";
}
?>[/code]

So I would say stay with the number formulas

Ray
Link to comment
https://forums.phpfreaks.com/topic/25797-quickie-query/#findComment-117833
Share on other sites

Make a test-
make file a.php which uses the math operations and in the begining write- $start=microtime(). In the end write echo ((microtime()-$start)).
Then make file b.php which uses round() or whatever, in the beging write $start=microtime() and in the end write echo ((microtime()-$start)). See if there is a real diffrence between the number of seconds that a.php took compared to b.php.

Orio.
Link to comment
https://forums.phpfreaks.com/topic/25797-quickie-query/#findComment-118010
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.