Created
November 12, 2012 18:15
-
-
Save theclanks/4060938 to your computer and use it in GitHub Desktop.
Método para converter find no formato Brasil
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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