Saturday 8 October 2016

How to any value display only till 2 decimal points?

Using following methods can display only 2 decimal point value.

Method 1:-
<?php
 $final_total=199.9;
 
    $formattedNum = number_format($final_total, 2);
    echo $formattedNum;
 ?>

Method 2:- 
 
<?php 
 $final_total=199.9;
 echo $number = sprintf('%0.2f', $final_total); 
 ?>
 
 


For more Interesting, Useful Article & codes visit IT New Code.

Ankit Shah PHP Expert

IT New Code suggest a solution for your problem related to coding, Specially .PHP, Wordpress, WooCommerce, Magento, HTML and CSS. Visit Our website for Information.

0 comments:

Post a Comment

 

Copyright @ 2016 IT New Code | Developing Code | Designing Code.

Designed by: Ankit Shah