#******************************************************************************
# 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
- MySQL stored procedure&triggers
- php questions
- Php Questions
- How we canmove into last changed position on info window close event On google map
- Pattern Matching in mysql
- MySQL INDEX
- MYSQL joins
- Jquery based dynamic adding and removal of html elements.
- securing a form with captcha
- Comparing a date with current date
0 comments
Post a Comment
Please put your comments here. your questions, your suggestions, also what went wrong with me.