vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 Programming Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=15)
-   -   how to get a following zero as a numerical? (https://vborg.vbsupport.ru/showthread.php?t=82510)

Cloudrunner 06-04-2005 05:18 PM

how to get a following zero as a numerical?
 
So I want to display the following zeros in a 2 precision php rounded number, but I need it as a numerical...how do I do that?

i.e.

PHP Code:

$amount 1;
$exchange 1.5;
$total round($amount*$exchange);

echo 
$total

how do I get that to display as 1.50 as a numerical (as opposed to the string that the number_format(); function gives)?

Jolten 06-04-2005 11:46 PM

Don't round it if you want the decimal.

PHP Code:

$amount 1;
$exchange 1.5;
$total = ($amount*$exchange);

echo 
$total

that will echo 1.5. If you want a trailing zero:


PHP Code:

$amount 1;
$exchange 1.5;
$total = ($amount*$exchange);

if ((
strlen($total) ==1) && $total != 0) { $total $total.".00"; } 
/* adds decimal and two following zeros if total does not = ? if you want 0.00 remove the "&& $total !-0" portion of the if statement. */

if (strlen($total) ==3) { $total $total."0"; } 
/* adds traling zero for x.x amount. */

echo $total

You don' need a statement for strlen = 2 because that would be X. and there will never be a decimal with only 1 digit and if it's a two digit whole number you do not want to add a zero. I don't know how long your rounding will be. if it's 4 digits behind the decimal you may need a couple more statements to compensate.

This only effects display of $total it doesn't alter the database.

This is how I do it on my site.

filburt1 06-05-2005 12:06 AM

A vastly easier and cleaner solution is to use the number formatting functions PHP gives you, including the formatted string functions like sprintf().

Jolten 06-05-2005 12:31 AM

wow that is easier filburt. Thanks.

Cloudrunner 06-05-2005 03:46 AM

<i>edit: </i>NVM, got this one figgered out as well...was not a numerical vs. string issue...was a formatting error within the currency notation...

Thanks!


All times are GMT. The time now is 04:45 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.00974 seconds
  • Memory Usage 1,724KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (3)bbcode_php_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (5)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete