1234567891011121314151617181920212223242526 |
- <?php
-
-
-
-
- if (!function_exists('diy_number_format')) {
-
-
- function diy_number_format($price = '')
- {
- $price = str_replace(',', '', $price);
- $price = preg_replace('/^(\d+)\.00/i', '${1}', $price);
- return $price;
- }
- }
|