Follow along with the video below to see how to install our site as a web app on your home screen.
Примечание: This feature may not be available in some browsers.
9,500.00руб
Как брать 00
Извините если такая тема уже создавалась , ни кто нормального ответа не дал !
function _formatPrice($price)
{
$price = (string)$price;
if ( !strstr($price,".") )
$price .= ".00";
$oldPrice = $price;
$res = "";
$i = 0;
for( $i=strlen($price)-1; $i>=0; $i-- )
{
if ( $price[$i] == "." )
break;
else
$res = $price[$i].$res;
}
$res = ".".$res;
$i--;
$digitCounter = 0;
for( ; $i>=0; $i-- )
{
$digitCounter++;
$res = $price[$i].$res;
if ( $digitCounter == 3 && $i != 0 )
{
$res = ",".$res;
$digitCounter = 0;
}
}
return $res;
}
function _formatPrice($n)
{
$n=(int)$n;
return trim(substr($n,0,strlen($n)%3).preg_replace("/(\d{3})/"," \\1",substr($n,strlen($n)%3)));
}