1. PHP / Говнокод #13179

    +152

    1. 1
    2. 2
    3. 3
    4. 4
    5. 5
    6. 6
    7. 7
    8. 8
    9. 9
    function unix_timestamp_to_human ($timestamp = "", $format = 'D d M Y - H:i:s')
    {
        if (empty($timestamp) || ! is_numeric($timestamp)) $timestamp = time();
        return ($timestamp) ? date($format, $timestamp) : date($format, $timestamp);
    }
    
    $unix_time = "1251208071";
    
    echo unix_timestamp_to_human($unix_time); //Return: Tue 25 Aug 2009 - 14:47:51

    Я всё правильно понял, код воняет?

    Запостил: denis90, 15 Июня 2013

    Комментарии (3) RSS

    • Комбинация пыха с датой выдаёт такой штын, что даже читать не хочется.
      Ответить
    • ($timestamp) ? date($format, $timestamp) : date($format, $timestamp);

      Але, часы есть? А если найду?
      Ответить

    Добавить комментарий