| 1 | <?php |
| 2 | |
| 3 | require_once __DIR__ . "/fetch.php"; |
| 4 | require_once __DIR__ . "/calculaArregloDeParametros.php"; |
| 5 | require_once __DIR__ . "/calculaSqlDeAsignaciones.php"; |
| 6 | |
| 7 | function selectFirst( |
| 8 | PDO $pdo, |
| 9 | string $from, |
| 10 | array $where = [], |
| 11 | string $orderBy = "", |
| 12 | int $mode = PDO::FETCH_ASSOC, |
| 13 | $opcional = null |
| 14 | ) { |
| 15 | $sql = "SELECT * FROM $from"; |
| 16 | |
| 17 | if (sizeof($where) > 0) { |
| 18 | $sqlDeWhere = calculaSqlDeAsignaciones(" AND ", $where); |
| 19 | $sql .= " WHERE $sqlDeWhere"; |
| 20 | } |
| 21 | |
| 22 | if ($orderBy !== "") { |
| 23 | $sql .= " ORDER BY $orderBy"; |
| 24 | } |
| 25 | |
| 26 | if (sizeof($where) === 0) { |
| 27 | $statement = $pdo->query($sql); |
| 28 | return fetch($statement, [], $mode, $opcional); |
| 29 | } else { |
| 30 | $statement = $pdo->prepare($sql); |
| 31 | $parametros = calculaArregloDeParametros($where); |
| 32 | return fetch($statement, $parametros, $mode, $opcional); |
| 33 | } |
| 34 | } |
| 35 | |