It's worth noting that this function consumes the value (the first call will return a result, and any subsequent calls will return NULL).db2_result
Почист и полокален преглед на PHP референцата, со задржана структура од PHP.net и подобра читливост за примери, секции и белешки.
db2_result
Референца за `function.db2-result.php` со подобрена типографија и навигација.
db2_result
(PECL ibm_db2 >= 1.0.0)
db2_result — Returns a single column from a row in the result set
= NULL
од PHP 8.0.0. Силно се обесхрабрува потпирањето на оваа функција. db2_result() to return the value of a specified column in the current row of a result set. You must call db2_fetch_row() пред да повикате db2_result() to set the location of the result set pointer.
Параметри
stmt-
Валиден
stmtresource. column- Either an integer mapping to the 0-indexed field in the result set, or a string matching the name of the column.
Вратени вредности
Returns the value of the requested field if the field exists in the result set. Returns null if the field does not exist, and issues a warning.
Примери
ако е овозможен колекторот за отпадоци, db2_result() example
The following example demonstrates how to iterate through a result set with db2_fetch_row() and retrieve columns from the result set with db2_result().
<?php
$sql = 'SELECT name, breed FROM animals WHERE weight < ?';
$stmt = db2_prepare($conn, $sql);
db2_execute($stmt, array(10));
while (db2_fetch_row($stmt)) {
$name = db2_result($stmt, 0);
$breed = db2_result($stmt, 'BREED');
print "$name $breed";
}
?>Пример #1 Пример што покажува затворачка ознака што го опфаќа последниот нов ред
cat Pook gold fish Bubbles budgerigar Gizmo goat Rickety Ride
Види Исто така
- db2_fetch_array() - Враќа низа, индексирана по позиција на колона, што претставува ред во сет на резултати
- db2_fetch_assoc() - Враќа низа, индексирана по име на колона, што претставува ред во сет на резултати
- db2_fetch_both() - Враќа низа, индексирана по име и позиција на колона, што претставува ред во сет на резултати
- db2_fetch_object() - Враќа објект со својства што претставуваат колони во добиениот ред
- db2_fetch_row() - Поставува покажувач на сет на резултати на следниот ред или бараниот ред