Jump to content

yyyy-mm-dd to dd-mm-yy


sun14php

Recommended Posts

You can use explode()...

[code]<?php
//$date is in yyyy-mm-dd format
$explode=explode("-",$date);
$new_date=$explode[2]."-".$explode[1]."-".$explode[0];
echo $new_date;
?>[/code]

Orio.

EDIT-
And if you want to convet yyyy to yy, do this:
[code]<?php
//$date is in yyyy-mm-dd format
$explode=explode("-",$date);
$explode[0]=substr($explode[0], -1, 2);
$new_date=$explode[2]."-".$explode[1]."-".$explode[0];
echo $new_date;
?>[/code]
Link to comment
https://forums.phpfreaks.com/topic/12912-yyyy-mm-dd-to-dd-mm-yy/#findComment-49593
Share on other sites

Archived

This topic is now archived and is closed to further replies.

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.