11111
PDOStatement::fetchColumn
Внимание |
-Эта функция является ЭКСПЕРИМЕНТАЛЬНОЙ.
Поведение этой функции, ее имя и относящаяся к ней документация могут измениться в последующих версиях PHP без уведомления. Используйте эту функцию на свой страх и риск. |
- Returns a single column from the next row of a result set.
-
column_number - Number of the column you wish to retrieve from the row. If no value is supplied, PDOStatement::fetchColumn() fetches the first column.
- PDOStatement::fetchColumn() returns a single column in the next row of a result set.
Внимание |
- There is no way to return another column from the same row if you use PDOStatement::fetchColumn() to retrieve data. |
-