php Programming Glossary: decimal_places
nested php ternary trouble: ternary output != if - else http://stackoverflow.com/questions/4807454/nested-php-ternary-trouble-ternary-output-if-else The output for each structure is below the code. Ternary decimal_places max 1 2 max 3 0 1 Ternary Output max 100000 decimal 0 max 0.48.. 0 max 0.48 decimal 0 max 0.15 decimal 0 If Else if max 1 decimal_places 2 elseif max 3 decimal_places 0 else decimal_places 1 If Else.. decimal 0 If Else if max 1 decimal_places 2 elseif max 3 decimal_places 0 else decimal_places 1 If Else Output max 100000 decimal 2..
|