Skip to content

Instantly share code, notes, and snippets.

@viniciusss
Created December 4, 2013 12:40
Show Gist options
  • Save viniciusss/7786836 to your computer and use it in GitHub Desktop.
Save viniciusss/7786836 to your computer and use it in GitHub Desktop.
<?php
function g_arr_executa_query($query, $tipo = 'buscar') {
switch($tipo) {
case 'buscar':
try {
return $executa->fetchAll($select);
} catch (Exception $e) {
if( APP_ENV == ENV_DEV ) {
throw new Exception($e->getMessage(), $e->getCode());
}
return array();
}
break;
break;
}
// resto codigo atual
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment