I want to input a timestamp in below format to the database.

yyyy-mm-dd hh:mm:ss

How can I get in above format?

When I use

$date = new Zend_Date();

it returns month dd, yyyy hh:mm:ss PM

I also use a JavaScript calender to insert a selected date and it returns in dd-mm-yyyy format

Now, I want to convert these both format into yyyy-mm-dd hh:mm:ss so can be inserted in database. Because date format not matching the database field format the date is not inserted and only filled with *00-00-00 00:00:00*

Thanks for answer

link|improve this question

1  
do you use Zend_Date for anything else? Or do you just want to format a timestamp with it? – Gordon Jun 1 '11 at 13:23
3  
Have you referred to the manual before asking? framework.zend.com/manual/en/zend.date.constants.html – PsyCoder Jun 1 '11 at 13:23
@Coding-Freak yes I referred manual but, I found this 2009-02-13T12:53:27+01:00. I don't want "T" and "+" sign in between. – maniclorn Jun 1 '11 at 13:31
@Gordon: I used zend_date() to get the current date. – maniclorn Jun 1 '11 at 13:32
feedback

3 Answers

up vote 3 down vote accepted

Not sure if this will help you, but try using:

 // to show both date and time,
 $date->get('YYYY-MM-dd HH:mm:ss');

 // or, to show date only
 $date->get('YYYY-MM-dd') 
link|improve this answer
Thanks. It works $date = new Zend_Date(); $createdDate= $date->get('YYYY-MM-dd HH:mm:ss'); print($createdDate); – maniclorn Jun 1 '11 at 13:34
@maniclorn If an answer solves your problem, it's considered polite to accept the given answer. – Berry Langerak Jun 1 '11 at 13:36
I have got a date data from a textbox in form in an arry like $formData['startdate'] which is in dd-mm-yy format. Now, how to convert in that format by using above code or any other technique? – maniclorn Jun 1 '11 at 13:43
snippets.dzone.com/posts/show/10207 (Google does wonders....) – Flukey Jun 1 '11 at 13:46
In the same style, use $date = new Zend_Date($stringDate,'dd-MM-YY') or later $date->set($stringDate,'dd-MM-YY') – Arek Jablonski Jun 1 '11 at 16:11
feedback

Technically, @stefgosselin gave the correct answer for Zend_Date, but Zend_Date is completely overkill for just getting the current time in a common format. Zend_Date is incredibly slow and cumbersome to use compared to PHP's native date related extensions. If you don't need translation or localisation in your Zend_Date output (and you apparently dont), stay away from it.

Use PHP's native date function for that, e.g.

echo date('Y-m-d H:i:s');

or DateTime procedural API

echo date_format(date_create(), 'Y-m-d H:i:s');

or DateTime Object API

$dateTime = new DateTime;
echo $dateTime->format('Y-m-d H:i:s');

Don't do the common mistake of using each and every component Zend Frameworks offers just because it offers it. There is absolutely no need to do that and in fact, if you can use a native PHP extension to achieve the same result with less or comparable effort, you are better off with the native solution.

Also, if you are going to save a date in your database, did you use any of the DateTime related columns in your database? Assuming you are using MySql, you could use a Timestamp column or an ISO8601 Date column.

link|improve this answer
3  
I second that! ;) Gordon always knows best. – stefgosselin Jun 1 '11 at 13:42
@Gorden: I got it. But I want to use array value of`$formData['startdate']` in first parameter of date_format(date_create(), 'Y-m-d H:i:s');. i.e. in place of date_create(). – maniclorn Jun 1 '11 at 13:57
@maniclorn sorry but I won't tell you how to do that. Working with dates is basic knowledge for a PHP developer. I really mean no offense, but if you dont know how to do that, you shouldn't be working with Zend Framework but get to grips with PHP basics first. Please follow the links to the documentation and try to find out yourself. It's easy and it is absolutely essential that you learn how to do it. – Gordon Jun 1 '11 at 14:03
Only exception to using Zend_Date is when you need advanced date manipulations like comparing and stuff. For that is Zend_Date much simplier than pure php functions. But for db saving/displaying date it's just pure overkill ;) – Tomáš Fejfar Jun 1 '11 at 16:54
And ultimate answer for date manipulation is date('Y-m-d', strtotime($nearlyAnyNormalDateFormat)); – Tomáš Fejfar Jun 1 '11 at 16:55
feedback

This is how i did it:

abstract class App_Model_ModelAbstract extends Zend_Db_Table_Abstract
{

    const DATE_FORMAT = 'yyyy-MM-dd';

    public static function formatDate($date, $format = App_Model_ModelAbstract::DATE_FORMAT)
    {
        if (!$date instanceof Zend_Date && Zend_Date::isDate($date)) {
            $date = new Zend_Date($date);
        }

        if ($date instanceof Zend_Date) {
            return $date->get($format);
        }

        return $date;
    }
}

this way you don't need to be concerned with whether or not its actually an instance of zend date, you can pass in a string or anything else that is a date.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.