#******************************************************************************
# 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
- SEO techniques -Tips
- question regarding socket
- (no title)
- MYSQL UNION
- Php Questions
- Checking for a valid date for date of birth and age verification - Codeigniter
- Help with codeignitor
- php Questions
- function to round a number into two
- How to select a specified number of values starting with each alphabets in mysql.

0 comments
Post a Comment
Please put your comments here. your questions, your suggestions, also what went wrong with me.