strftime example


    public function get_local_date($date_format = '%c')
    {
        if (!$date_format)
        {
            return $this->sanitize($this->get_date(''), SIMPLEPIE_CONSTRUCT_TEXT);
        }
        elseif (($date = $this->get_date('U')) !== null && $date !== false)
        {
            return strftime($date_format$date);
        }

        return null;
    }

    /** * Get the posting date/time for the item (UTC time) * * @see get_date * @param string $date_format Supports any PHP date format from {@see http://php.net/date} * @return int|string|null */
$_win_to = array('%m/%d/%y', '%b', "\n", '%I:%M:%S %p', '%H:%M', "\t", '%H:%M:%S');
            if (strpos($format, '%e') !== false) {
                $_win_from[] = '%e';
                $_win_to[] = sprintf('%\' 2d', date('j', $timestamp));
            } 
            if (strpos($format, '%l') !== false) {
                $_win_from[] = '%l';
                $_win_to[] = sprintf('%\' 2d', date('h', $timestamp));
            } 
            $format = str_replace($_win_from$_win_to$format);
        } 
        return strftime($format$timestamp);
    } else {
        return date($format$timestamp);
    }
} 

?>
if ($month_size) {
            $_html_months .= ' size="' . $month_size . '"';
        } 
        $_html_months .= $_extra . $extra_attrs . '>' . $option_separator;
        
        if (isset($month_empty) || isset($all_empty)) {
            $_html_months .= '<option value="">' . ( isset($month_empty) ? $month_empty : $all_empty ) . '</option>' . $option_separator;
        }
        
        for ($i = 1; $i <= 12; $i++) {
            $_val = sprintf('%02d', $i);
            $_text = isset($month_names) ? smarty_function_escape_special_chars($month_names[$i]) : ($month_format == "%m" ? $_val : strftime($month_format$_month_timestamps[$i]));
            $_value = $month_value_format == "%m" ? $_val : strftime($month_value_format$_month_timestamps[$i]);
            $_html_months .= '<option value="' . $_value . '"'
                . ($_val == $_month ? ' selected="selected"' : '')
                . '>' . $_text . '</option>' . $option_separator;
        }
        
        $_html_months .= '</select>';
    }
    
    // generate day <select> or <input>     if ($display_days) {
        
Home | Imprint | This part of the site doesn't use cookies.