PHP - number_format question
I want to format a number without rounding it. For example, I have a number that is 5.77890 and I just want to drop the 7890 and display 5.7, but without rounding it up. Right now I am using number_format but it's rounding it to 5.8. How can this be done?

