You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

200 lines
6.0 KiB

  1. <?php
  2. /**
  3. * Format
  4. *
  5. * @copyright NetMonsters <team@netmonsters.ru>
  6. * @link
  7. * @package Majestic
  8. * @subpackage Core
  9. * @since 24.12.2008
  10. * @version SVN: $Id$
  11. * @filesource $URL$
  12. */
  13. /**
  14. * Отвечает за конвертацию данных между читаемым
  15. * человеком и машиной форматами.
  16. *
  17. */
  18. class Format
  19. {
  20. /* Date & time */
  21. static protected $time_format = 'H:i:s';
  22. static protected $date_format = 'd.m.Y';
  23. static protected $today_format = 'd.m.Y'; //disabled by default
  24. static protected $date_time_format = 'H:i d.m.Y';
  25. static protected $today_time_format = 'H:i d.m.Y'; //disabled by default
  26. static protected $timezone_offset = 0;
  27. /* money */
  28. static protected $decimal_point = ',';
  29. static protected $currency_symbol = 'руб.';
  30. static protected $frac_digits = 2;
  31. static public function getCurrency()
  32. {
  33. return self::$currency_symbol;
  34. }
  35. /**
  36. * Форматируем int в денежный формат
  37. *
  38. * @param mixed $int
  39. * @param bool $currency - показывать валюту
  40. * @param bool $show_decimals - показывать или нет дробную часть
  41. */
  42. static public function int2money($int = 0, $currency = false, $show_decimals = true)
  43. {
  44. $money = number_format($int/100, ($show_decimals) ? self::$frac_digits : 0, self::$decimal_point, ' ');
  45. return $money . (($currency) ? ' '.self::$currency_symbol : '');
  46. }
  47. static public function money2int($money)
  48. {
  49. $money = str_replace(' ', '', $money);
  50. if(!strstr($money, self::$decimal_point) && !strstr($money, '.')){
  51. $int = (int)$money * 100;
  52. }else{
  53. $int = (int)str_replace(array('.', self::$decimal_point), '', $money);
  54. }
  55. return $int;
  56. }
  57. /**
  58. * Возвращает время в часах из секунд.
  59. *
  60. * @param int $timestamp
  61. * @return string
  62. */
  63. static public function int2time($timestamp = 0)
  64. {
  65. $hours = floor($timestamp / 3600);
  66. $minutes = floor(($timestamp / 60) - ($hours * 60));
  67. $seconds = $timestamp - ($hours * 3600) - ($minutes * 60);
  68. return ($hours < 10 ? ('0' . $hours) : $hours)
  69. . ':' . ($minutes < 10 ? ('0' . $minutes) : $minutes)
  70. . ':' . ($seconds < 10 ? ('0' . $seconds) : $seconds);
  71. }
  72. /**
  73. * Возвращает дату и время из таймстампа.
  74. *
  75. * @param int $timestamp
  76. * @param bool $hours
  77. * @return string
  78. */
  79. static public function int2date($timestamp = 0, $hours = true)
  80. {
  81. if (date('Ymd') == date('Ymd', $timestamp)) {
  82. return date(($hours) ? self::$today_time_format : self::$today_format , $timestamp);
  83. }
  84. return date(($hours) ? self::$date_time_format : self::$date_format , $timestamp);
  85. }
  86. static public function int2rusDate($timestamp = 0, $hours = false)
  87. {
  88. $month = array('января', 'февраля', 'марта',
  89. 'апреля', 'мая', 'июня',
  90. 'июля', 'августа', 'сентября',
  91. 'октября', 'ноября', 'декабря');
  92. $date = ($hours) ? date('H:i d', $timestamp) . ' ' . $month[date('m', $timestamp) - 1] . ' ' .date('Y', $timestamp) : date('d', $timestamp) . ' ' . $month[date('m', $timestamp) - 1] . ' ' .date('Y', $timestamp);
  93. return $date;
  94. }
  95. /**
  96. * Установка смещения для getTime
  97. *
  98. * @param int $offset
  99. */
  100. static public function setTimezoneOffset($offset)
  101. {
  102. self::$timezone_offset = $offset;
  103. }
  104. /**
  105. * Установка форматов даты
  106. *
  107. */
  108. static public function setDateFormat($date_time_format, $date_format = false)
  109. {
  110. self::$date_time_format = $date_time_format;
  111. if ($date_format) {
  112. self::$date_format = $date_format;
  113. }
  114. }
  115. /**
  116. * Установка форматов даты для текущего дня
  117. *
  118. */
  119. static public function setTodayFormat($today_time_format, $today_format = false)
  120. {
  121. self::$today_time_format = $today_time_format;
  122. if ($today_format) {
  123. self::$today_format = $today_format;
  124. }
  125. }
  126. /**
  127. * Преобразует время в секунды.
  128. *
  129. * @param string $time
  130. * @return int
  131. */
  132. static public function time2int($time)
  133. {
  134. $elements = explode(':', $time);
  135. if(count($elements) == 3){
  136. list($h, $m, $s) = $elements;
  137. $int = ($h * 60 * 60) + ($m * 60) + $s;
  138. } else {
  139. $int = (int)$time;
  140. }
  141. return $int;
  142. }
  143. /**
  144. * Преобразует дату в таймстамп.
  145. *
  146. * @param mixed $time
  147. * @return TimeFormat
  148. */
  149. static public function date2int($time)
  150. {
  151. return strtotime($time);
  152. }
  153. static public function int2phone($intphone)
  154. {
  155. $intphone = (string) $intphone;
  156. if (strlen($intphone) == 10) {
  157. return '(' . substr($intphone, 0, 3) . ') ' . substr($intphone, 3, 3) . '-' . substr($intphone, 6, 2) . '-' . substr($intphone, 8, 2);
  158. } elseif (strlen($intphone) == 7) {
  159. return substr($intphone, 0, 3) . '-' . substr($intphone, 3, 2) . '-' . substr($intphone, 5, 2);
  160. }
  161. return '';
  162. }
  163. static public function phone2int($phone)
  164. {
  165. $phone = str_replace(array(' ', '-', '(', ')'), '', $phone);
  166. $phone_length = strlen($phone);
  167. if (is_numeric($phone) && ($phone_length == 7 || $phone_length == 10)) { //бывают семизначные прямые номера
  168. if ($phone_length == 7) {
  169. $phone = '495' . $phone;
  170. }
  171. return $phone;
  172. }
  173. return '';
  174. }
  175. }
  176. /**
  177. * Оффсет с учетом летнего/зимнего времени
  178. */
  179. Format::setTimezoneOffset(date('Z') - ((date('I') ? 60*60 : 0 )));
  180. ?>