Still not sure about your problem...
If it is an exception about DateTime class not found, then it's a namespace problem: either import it with the use
keyword, or reference it with a preceding backslash: \DateTime::createFromFormat
Otherwise, yes, $fecha
will be a DateTime object which is provided by standard PHP. Phalcon itself does not have any wrapper for formatting dates, so any custom functonality will have to be implemented by yourself