PHP.mk документација

pg_fetch_all

Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.

function.pg-fetch-all.php PHP.net прокси Преводот се освежува
Оригинал на PHP.net
Патека function.pg-fetch-all.php Локална патека за оваа страница.
Извор php.net/manual/en Оригиналниот HTML се реупотребува и локално се стилизира.
Режим Прокси + превод во позадина Кодовите, табелите и белешките остануваат читливи во истиот тек.
pg_fetch_all

Референца за `function.pg-fetch-all.php` со подобрена типографија и навигација.

function.pg-fetch-all.php

pg_fetch_all

(PHP 4 >= 4.3.0, PHP 5, PHP 7, PHP 8)

pg_fetch_allПрезема сите редови од резултат како низа

= NULL

pg_fetch_all(PgSql\Result $result, int $mode = PGSQL_ASSOC): array

pg_fetch_all() враќа низа што ги содржи сите редови (записи) во PgSql\Result instance.

Забелешка: Оваа функција ги поставува NULL полињата на PHP null value.

Параметри

result

Еден PgSql\Result инстанца, вратена од pg_query(), pg_query_params() or pg_execute()инстанца, или ознаката за завршување на PostgreSQL командата поврзана со резултатот

mode

Опционален параметар што контролира како вратениот array е индексиран. mode е константа и може да ги земе следните вредности: PGSQL_ASSOC, PGSQL_NUM and PGSQL_BOTH. Користејќи PGSQL_NUM, функцијата ќе врати низ со нумерички индекси, користејќи PGSQL_ASSOC ќе врати само асоцијативни индекси додека PGSQL_BOTH ќе врати и нумерички и асоцијативни индекси.

Вратени вредности

Еден array со сите редови во резултатот. Секој ред е низа од вредности на полињата индексирани по име на поле.

Дневник на промени

Верзија = NULL
8.1.0 На result параметарот очекува PgSql\Result инстанца сега; претходно, а resource се очекуваше.
8.0.0 pg_fetch_all() сега ќе врати празно array наместо false за множества со нула редови.
7.1.0 На mode параметар беше додаден.

Примери

Пример #1 PostgreSQL преземи ги сите

<?php
$conn
= pg_pconnect("dbname=publisher");
if (!
$conn) {
echo
"An error occurred.\n";
exit;
}

$result = pg_query($conn, "SELECT * FROM authors");
if (!
$result) {
echo
"An error occurred.\n";
exit;
}

$arr = pg_fetch_all($result);

print_r($arr);

?>

Горниот пример ќе прикаже нешто слично на:

Array
(
    [0] => Array
        (
            [id] => 1
            [name] => Fred
        )

    [1] => Array
        (
            [id] => 2
            [name] => Bob
        )

)

Види Исто така

Белешки од корисници 9 белешки

Анонимен
пред 22 години
Also for those who are trying to move off oracle, pg_fetch_all returns an array with rows and columns inverted in the sense of ocifetchall. You would need to transpose this result array before your code takes the first index a column name and the second index a row index.
ilhan на ilhan точка name
пред 9 години
PG functions retrieve data as strings. If you want automatic casting you need to use PDO.
jcomeau на whatisthewww точка com
пред 23 години
pg_fetch_all, despite the app note, accepts only one argument, the resultset. It does exactly what is expected, returning a two-dimensional array of the resultset. I suspect the app note given was just copied from pg_fetch_array, which is what you want to use for a single row.
tasmanian на devil точка com
пред 22 години
It seems like pg_fetch_all() only works on version 4.3.x. I tried it with 4.2.2 and it does not recognize the function, so I assume it won't work on 4 => 4.2.x.
prefer_not_to на say точка com
пред 16 години
For those wondering, this function returns a two-dimentional array, the first dimension being a 0-based indexed array, the second dimension an associative.  So you might access the first authors surname using $authors[0]["surname"].  

Certainly this is the case in PHP 5.2.9, I can't vouch for other versions though.
akashwebdev at gmail dot com
пред 16 години
Be aware that pg_fetch_all() is subject to the same limitations as pg_fetch_assoc(), in that if your query returns multiple columns with the same name (or alias) then only the rightmost one will be returned in the associative array, other ones will not.

A simple example:
<?php
$res = pg_query(
"SELECT a.*, b.* -- Fetch all columns from both tables
FROM table1 AS a

LEFT OUTER JOIN table2 as b
USING (column)"
);

$rows = pg_fetch_all($res);
?>

In this example, since we're selecting columns via *, if any columns from table2 share the same names as those in table1, they will be the ones returned despite that table2 (as the optional side of an outer join) may return NULL values.

This is not a bug, just a limitation of associative arrays in general, and is easy enough to avoid by structuring your queries carefully and using column aliases to avoid confusion.
viniciusweb на gmail точка com
21 години пред
This function returns NULL if the parameter is false.
humbertoibanez на gmail точка com
пред 10 години
If you configure in your pg_hba.conf file a connection by the md5 method and you didn't setup a password for that user, you must define a password by the "alter role" PostgreSQL command:

alter role user_name encrypted password 'user_password';

Also, if you is connecting by type TCP/IP (host) and your IP address is another than (localhost), as example (127.0.1.1) you must uncomment the following line at postgresql.conf file, adding your IP address:

listen_addresses = 'localhost,127.0.1.1'

After save the new configuration, you must restart your PostgreSQL service.
php точка net на mechintosh точка com
пред 22 години
For versions of PHP that don't yet support the new names or newer functions I wrote a couple functions like this one

if (! function_exists("pg_fetch_all")) {
  function pg_fetch_all($res, $kind="assoc") {
    $i = 0; // this is needed for the row integer in the looped pg_fetch_array
    if ($kind == "assoc") {
      while ($row = pg_fetch_array($res, $i, PGSQL_ASSOC)) {
        $array_out[] = $row;
        $i++;
    }else{
      while ($row = pg_fetch_array($res)) {
        $array_out[] = $row;
      }
    }
    return $array_out;
  }
}
На оваа страница

Автоматски outline од активната документација.

Насловите ќе се појават тука по вчитување.

Попрегледно читање

Примерите, changelog табелите и user notes се визуелно издвоени за да не се губат во долгата содржина.

Брз совет Користи го outline-от Скокни директно на главните секции од активната страница.
Извор Оригиналниот линк останува достапен Кога ти треба целосен upstream context, отвори го PHP.net во нов tab.