Magento decimal place format from 4 to 2 in soap api cart info

749 Views Asked by At

I am getting the cart information using soap api. But in the result, the price show the 4 digit after decimal place, but i want it 2 digit after decimal place. For example, right now it displaying "3.0000" but i want to display "3.00".

1

There are 1 best solutions below

4
On BEST ANSWER

You can use this php function for specific format

<?php   
     /* english notation without thousands separator*/
         $english_format_number = number_format($number, 2, '.', '');
     /* 1234.57 */ 
?>