|
mysqli_result::fetch_objectmysqli_fetch_object(PHP 5) mysqli_result::fetch_object -- mysqli_fetch_object — Returns the current row of a result set as an object ОписаниеОбъектно-ориентированный стиль
object mysqli_result::fetch_object
([ string $class_name
[, array $params
]] )
Процедурный стиль
object mysqli_fetch_object
( mysqli_result $result
[, string $class_name
[, array $params
]] )
The mysqli_fetch_object() will return the current row result set as an object where the attributes of the object represent the names of the fields found within the result set. Note that mysqli_fetch_object() sets the properties of the object before calling the object constructor. Список параметров
Возвращаемые значенияReturns an object with string properties that corresponds to the fetched row or NULL if there are no more rows in resultset.
Список изменений
ПримерыПример #1 Объектно-ориентированный стиль
<?php Пример #2 Процедурный стиль
<?php Результат выполнения данных примеров: Pueblo (USA) Arvada (USA) Cape Coral (USA) Green Bay (USA) Santa Clara (USA) Смотрите также
|
|||||