Skip to content

Instantly share code, notes, and snippets.

@quagliato
Created January 14, 2014 16:56
Show Gist options
  • Save quagliato/8421649 to your computer and use it in GitHub Desktop.
Save quagliato/8421649 to your computer and use it in GitHub Desktop.
Convert BR date format to ISO format
public static function brDate2ISO($date){
if(isset($date) && !is_null($date) && '' != $date && 10 == strlen($date)){
$dtAux = substr($date, 6, 4).'-';
$dtAux .= substr($date, 3, 2).'-';
$dtAux .= substr($date, 0, 2);
$date = $dtAux;
}
return $date;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment