PHP-Fusion
v.7.01
AP-Fusion
v7.02.05
Pimped-Fusion-AP
v0.09.03
March 29 2024 08:49:10
Авторизация
Логин

Пароль



Вы не зарегистрированы?
Нажмите здесь для регистрации.

Забыли пароль?
Запросите новый здесь.
Мини-чат
Вы должны авторизироваться, чтобы добавить сообщение.

lom
06/04/2018 14:03
Мы рады, ждем девятку. Очень хочется пощупать

Alipapa
27/03/2018 22:16
Всем привет, все неисправности устранили, всё у нас работает

mukaton
30/10/2015 02:37
Не получается ничего скачать. Ошибка Not Found

Alipapa
06/10/2015 23:00
9-я версия php-fusion на подходе, следите за новостями

Alipapa
10/11/2014 11:24
Заметь, я дважды ответил через 3 минуты после вопроса, могли бы уже решить

Последние статьи
· О стабилизаторах нап...
· СМС и Вебмани
· TinyMCE для пользова...
· PCRE (Perl Compatibl...
· PCRE (Perl Compatibl...
Последние активные темы форума
  Темы Просмотров Ответов Последние сообщения
PHP-Fusion 7 Bogatyr - бесп...
Моды, плагины
7103 1 Vveb--ws
08-10-2018 16:47
Php-Fusion v9. Первые впеча...
Вопросы по работе
4471 3 Vveb--ws
25-07-2018 13:46
Появился хэлп по PHP-Fusion...
Вопросы по работе
6710 7 Vveb--ws
25-07-2018 13:42
prestashop&ap-fusion
Вопросы по работе
17302 61 Alipapa
26-08-2014 10:29
Плагин магазина Ap-Shop
Моды, плагины
14530 70 Alipapa
18-08-2014 18:14
TinyMCE
Вопросы по работе
21052 55 Alipapa
27-07-2013 21:57
HTML-5
Моды, плагины
5416 1 Alipapa
15-06-2013 19:47
Мультиязычность в Pimped-Fu...
Ошибки, баги, глюки
6243 4 Papich
16-04-2013 12:39
Pimped-Fusion. Первые впеча...
Ошибки, баги, глюки
21613 127 Alipapa
18-12-2012 10:59
Ищу мод для расстановки код...
Моды, плагины
14965 55 Alipapa
17-09-2012 14:00
Как присоединить файл к лич...
Моды, плагины
8246 3 lom
27-05-2012 18:12
Что мне не нравится в после...
Вопросы по работе
6835 4 Alipapa
27-05-2012 18:08
Проблемы с добавлением кате...
Вопросы по работе
7715 5 Alipapa
27-05-2012 18:06

pg_fetch_array

(PHP 3>= 3.0.1, PHP 4 , PHP 5)

pg_fetch_array -- Fetch a row as an array

Description

array pg_fetch_array ( resource result [, int row [, int result_type]] )

pg_fetch_array() returns an array that corresponds to the fetched row (tuples/records). It returns FALSE, if there are no more rows.

pg_fetch_array() is an extended version of pg_fetch_row(). In addition to storing the data in the numeric indices (field index) to the result array, it also stores the data in associative indices (field name) by default.

Замечание: Эта функция устанавливает NULL-поля в значение NULL PHP.

row is row (record) number to be retrieved. First row is 0.

result_type is an optional parameter that controls how the return value is initialized. result_type is a constant and can take the following values: PGSQL_ASSOC, PGSQL_NUM, and PGSQL_BOTH. Using PGSQL_NUM, pg_fetch_array() will return an array with numerical indices, using PGSQL_ASSOC will return only associative indices while PGSQL_BOTH, the default, will return both numerical and associative indices.

Замечание: result_type was added in PHP 4.0.

pg_fetch_array() is NOT significantly slower than using pg_fetch_row(), while it provides a significant ease of use.

Пример 1. pg_fetch_array() example

<?php

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

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

$arr = pg_fetch_array ( $result , 0 , PGSQL_NUM );
echo
$arr [ 0 ] . " <- Row 1 Author\n" ;
echo
$arr [ 1 ] . " <- Row 1 E-mail\n" ;

// As of PHP 4.1.0, the row parameter is optional; NULL can be passed instead,
// to pass a result_type.  Successive calls to pg_fetch_array will return the
// next row.
$arr = pg_fetch_array ( $result , NULL , PGSQL_ASSOC );
echo
$arr [ "author" ] . " <- Row 2 Author\n" ;
echo
$arr [ "email" ] . " <- Row 2 E-mail\n" ;

$arr = pg_fetch_array ( $result );
echo
$arr [ "author" ] . " <- Row 3 Author\n" ;
echo
$arr [ 1 ] . " <- Row 3 E-mail\n" ;

?>

Замечание: From 4.1.0, row became optional. Calling pg_fetch_array() will increment the internal row counter by one.

Смотрите также pg_fetch_row(), pg_fetch_object() and pg_fetch_result().

Все функции PHP:
Навигация
· Новости
· Статьи
· Скачать
· Форум
· Ссылки
· Категории новостей
· Обратная связь
· Галерея
· Поиск
· CMS AP-Fusion. Отличия от PHP-Fusion
· Javascript справочник
· Техника
Сейчас на сайте
· Гостей: 2

· Пользователей: 0

· Всего пользователей: 453
· Новый пользователь: ZDA
Информеры
Загрузка файлов  +  -
9,910,806 уникальных посетителей Iceberg by Harly