-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathutilidades.php
37 lines (33 loc) · 1.45 KB
/
utilidades.php
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
<?php
// formata valores do banco em um formato amigável.
function prettyPrintPhone($phone)
{
$formattedPhone = substr($phone, 0, (strlen($phone) - 4)) .
"-" .
substr($phone, strlen($phone) - 4);
if(strlen($phone) > 9)
{
if(strlen($phone) == 14 || strlen($phone) == 11)
$formattedPhone = (strlen($phone) == 14 ? substr($formattedPhone, 0, 3) : "") .
" (" .
substr($formattedPhone, 12, 2) .
") " .
substr($formattedPhone, strlen($formattedPhone) - 10);
else
$formattedPhone = (strlen($phone) == 13 ? substr($formattedPhone, 0, 3) : "") .
" (" .
substr($formattedPhone, strlen($formattedPhone) - 11, 2) .
") " .
substr($formattedPhone, strlen($formattedPhone) - 9);
}
return $formattedPhone;
}
// formata valores do banco em um formato amigável. ignora segundos
function prettyPrintTime($time) {
return substr($time, 0, -3);
}
// formata valores do banco em um formato amigável. ignora segundos
function prettyPrintPrice($price) {
return strlen($price) > 2 ? str_replace(".", ",", $price) : $price;
}
?>