wc_remove_number_precision( float $value )
Remove precision from a number and return a float.
Description Description
Parameters Parameters
- $value
-
(Required) Number to add precision to.
Return Return
(float)
Source Source
File: includes/wc-core-functions.php
function wc_remove_number_precision( $value ) {
$cent_precision = pow( 10, wc_get_price_decimals() );
return $value / $cent_precision;
}
Changelog Changelog
| Version | Description |
|---|---|
| 3.2.0 | Introduced. |