#******************************************************************************
# function to date formate into one to another
#******************************************************************************
function convertDateFormat($datetorev,$currentformat="ymd",$outputformat="dmy",$seperateby="/")
{
//This function is is not completed. the work remaining is adding more format conversions
if (( $currentformat=="ymd") and ($outputformat=="dmy"))
{
list($year, $month, $day) = split('[/.-]', $datetorev);
return $day.$seperateby.$month.$seperateby.$year;
}
else if (( $currentformat=="ymd") and ($outputformat=="mdy"))
{
list( $year,$month,$day) = split('[/.-]', $datetorev);
return $month.$seperateby.$day.$seperateby.$year;
}
else if (( $currentformat=="dmy") and ($outputformat=="ymd"))
{
list( $day,$month,$year) = split('[/.-]', $datetorev);
return $year.$seperateby.$month.$seperateby.$day;
}
else if (( $currentformat=="dmy") and ($outputformat=="mdy"))
{
list( $day,$month,$year) = split('[/.-]', $datetorev);
return $month.$seperateby.$day.$seperateby.$year;
}
else if (( $currentformat=="mdy") and ($outputformat=="ymd"))
{
list( $month,$day,$year) = split('[/.-]', $datetorev);
return $year.$seperateby.$month.$seperateby.$day;
}
else if (( $currentformat=="mdy") and ($outputformat=="dmy"))
{
list( $month,$day,$year) = split('[/.-]', $datetorev);
return $day.$seperateby.$month.$seperateby.$year;
}
else
{
return "Not valid";
}
}
#******************************************************************************
[Wednesday, January 02, 2008
|
0
comments
]
Popular Posts
- Jquery based dynamic adding and removal of html elements.
- Creating Google map and adding markers ans polyline on it
- php question
- Questoin regarding classes
- Contact Me
- creating dynamic elements in HTML using Javascript.
- functiion for MD5 encrypting and decrypting
- Php Questions
- PHP Question and answers
- function to calculate difference between two dates
0 comments
Post a Comment
Please put your comments here. your questions, your suggestions, also what went wrong with me.