|
Последние активные темы форума |
|
PDOStatement::fetchSingle
(no version information, might be only in CVS) PDOStatement::fetchSingle --
Returns the first column in the next row of a result set
Описаниеstring PDOStatement::fetchSingle ( void ) Внимание |
Эта функция является ЭКСПЕРИМЕНТАЛЬНОЙ.
Поведение этой функции, ее имя и относящаяся к ней документация
могут измениться в последующих версиях PHP без уведомления.
Используйте эту функцию на свой страх и риск. |
Возвращаемые значенияPDOStatement::fetchSingle() returns the first column
in the next row of a result set as a string value.
Внимание | There is no way to return the second or subsequent columns from a row
if you use this method to retrieve data.
|
Примеры
Пример 1. Return first column of the next row
<?php
$sth
=
$dbh
->
prepare
(
"SELECT name, colour FROM fruit"
);
$sth
->
execute
();
/* Fetch the first column from the next row in the result set */
print(
"Fetch the first column from the next row in the result set:\n"
);
$result
=
$sth
->
fetchSingle
();
print(
"$result
\n
"
);
$result
=
$sth
->
fetchSingle
();
print(
"$result
\n
"
);
?>
|
Результат выполнения данного примера: Fetch the first column from the next row in the result set:
lemon
orange |
|
Смотрите такжеPDO::query() | PDOStatement::fetch() | PDOStatement::fetchAll() | PDOStatement::prepare() | PDOStatement::setFetchMode() |
|