modifier.date_format.php 2.2 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465
  1. <?php
  2. /**
  3. * Smarty plugin
  4. *
  5. * @package Smarty
  6. * @subpackage PluginsModifier
  7. */
  8. /**
  9. * Smarty date_format modifier plugin
  10. *
  11. * Type: modifier<br>
  12. * Name: date_format<br>
  13. * Purpose: format datestamps via strftime<br>
  14. * Input:<br>
  15. * - string: input date string
  16. * - format: strftime format for output
  17. * - default_date: default date if $string is empty
  18. *
  19. * @link http://www.smarty.net/manual/en/language.modifier.date.format.php date_format (Smarty online manual)
  20. * @author Monte Ohrt <monte at ohrt dot com>
  21. * @param string $string input date string
  22. * @param string $format strftime format for output
  23. * @param string $default_date default date if $string is empty
  24. * @param string $formatter either 'strftime' or 'auto'
  25. * @return string |void
  26. * @uses smarty_make_timestamp()
  27. */
  28. function smarty_modifier_date_format($string, $format=null, $default_date='', $formatter='auto')
  29. {
  30. if ($format === null) {
  31. $format = Smarty::$_DATE_FORMAT;
  32. }
  33. /**
  34. * Include the {@link shared.make_timestamp.php} plugin
  35. */
  36. require_once(SMARTY_PLUGINS_DIR . 'shared.make_timestamp.php');
  37. if ($string != '' && $string != '0000-00-00' && $string != '0000-00-00 00:00:00') {
  38. $timestamp = smarty_make_timestamp($string);
  39. } elseif ($default_date != '') {
  40. $timestamp = smarty_make_timestamp($default_date);
  41. } else {
  42. return;
  43. }
  44. if($formatter=='strftime'||($formatter=='auto'&&strpos($format,'%')!==false)) {
  45. if (DS == '\\') {
  46. $_win_from = array('%D', '%h', '%n', '%r', '%R', '%t', '%T');
  47. $_win_to = array('%m/%d/%y', '%b', "\n", '%I:%M:%S %p', '%H:%M', "\t", '%H:%M:%S');
  48. if (strpos($format, '%e') !== false) {
  49. $_win_from[] = '%e';
  50. $_win_to[] = sprintf('%\' 2d', date('j', $timestamp));
  51. }
  52. if (strpos($format, '%l') !== false) {
  53. $_win_from[] = '%l';
  54. $_win_to[] = sprintf('%\' 2d', date('h', $timestamp));
  55. }
  56. $format = str_replace($_win_from, $_win_to, $format);
  57. }
  58. return strftime($format, $timestamp);
  59. } else {
  60. return date($format, $timestamp);
  61. }
  62. }
  63. ?>