Skip to content

Instantly share code, notes, and snippets.

@theclanks
Created November 12, 2012 18:15
Show Gist options
  • Save theclanks/4060938 to your computer and use it in GitHub Desktop.
Save theclanks/4060938 to your computer and use it in GitHub Desktop.
Método para converter find no formato Brasil
private function converteData($value)
{
if($value != "" && preg_match('/^(?:\s*(<>|<=|>=|<|>|=))?(.*)$/',$value,$matches))
return $matches[1] . date("Y-m-d",strtotime($matches[2]));
else
return $value;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment