OneFileCMS icon indicating copy to clipboard operation
OneFileCMS copied to clipboard

milli -vs- micro

Open Self-Evident opened this issue 13 years ago • 0 comments

This is just minor technical issue. In the footer is the line: "Rendered in 12345 milliseconds." However, It is displaying values obtained from getmicrotime() (*1000000), which are microseconds. milli = 1/1000 micro = 1/1000000.

If milliseconds are desired for display, the multiplier in the code needs changed from 1000000 to 1000.

However, if microseconds are desired, then just the wording needs changed. ie: milliseconds to microseconds.

Self-Evident avatar Apr 05 '12 15:04 Self-Evident