예제 #1
0
파일: helpers.php 프로젝트: jocoonopa/lubri
function cb5res(&$row)
{
    $tmp = [];
    foreach ($row as $key => $value) {
        $row[cb5($key)] = cb5($value);
    }
    $row = $tmp;
}
예제 #2
0
 public static function execSpecific($cnx, $query)
 {
     $res = odbc_exec($cnx, cb5($query));
     return $res;
 }