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
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
Share on other sites

This thread is more than a year old. Please don't revive it unless you have something important to add.

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

×
×
  • 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.