Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

How can I convert an integer into a date format like 2012-12-12 for insertion in an XML document?

<Feed>
<order>
<Order>
<orderid>71</orderid>
<login>krishna</login>
<date>1123213230</date>

I've used the below code:

$_xml .= "\t<date>" . $n['date'] . "</date>\r\n";
share|improve this question

1 Answer

up vote 4 down vote accepted

You can use FROM_UNIXTIME(column_name, '%Y-%m-%d') in your MySQL query.

Or you can just use date('Y-m-d', $n['date']).

Also, you can use PHP_EOL and you won't have to manually add "\r\n" to the end of your strings.

share|improve this answer
@minitech, thanks for the edit contribution! I seem to forget a lot that you can add links to text within code annotations. -.- – mmmshuddup Nov 6 '12 at 4:52
1  
Yeah, too bad Markdown can't do it, though. It would be nicer :P – rynah Nov 6 '12 at 4:54
@minitech Also, I just remembered that the d and m are lowercase in MySQL conversions as well. The capital M gives the month name if I'm not mistaken. I can't keep track of all these date conversion options. – mmmshuddup Nov 6 '12 at 4:58
1  
Thank you.it is worked well – user1796222 Nov 6 '12 at 5:01

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

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