sql >> Database teknologi >  >> RDS >> PostgreSQL

PHP-array til postgres-array

Her er en simpel funktion til at konvertere et PHP-array til PG-array.

function to_pg_array($set) {
    settype($set, 'array'); // can be called with a scalar or array
    $result = array();
    foreach ($set as $t) {
        if (is_array($t)) {
            $result[] = to_pg_array($t);
        } else {
            $t = str_replace('"', '\\"', $t); // escape double quote
            if (! is_numeric($t)) // quote only non-numeric values
                $t = '"' . $t . '"';
            $result[] = $t;
        }
    }
    return '{' . implode(",", $result) . '}'; // format
}


  1. Opret en hjemmeside med MySQL

  2. Sådan indstilles standardsproget for alle nye logins i SQL Server (T-SQL)

  3. Opret en Database Mail Profile (SSMS)

  4. Hvornår og hvordan bruges SQL PARTITION BY-sætningen