ibase_fetch_object
ibase_fetch_object
(PHP 5, PHP 7)
ibase_fetch_object - 从InterBase数据库中获取对象
描述
object ibase_fetch_object ( resource $result_id [, int $fetch_flag = 0 ] )
从给定结果标识符获取一行作为伪对象。
随后对ibase_fetch_object()的
调用返回结果集中的下一行。
参数
result_id
由ibase_query()或ibase_execute()获取的InterBase结果标识符。
fetch_flag
fetch_flag
是常量IBASE_TEXT
和IBASE_UNIXTIME
OR的组合。传递IBASE_TEXT
将导致此函数返回BLOB内容而不是BLOB ID。传递IBASE_UNIXTIME
将导致此函数将日期/时间值作为Unix时间戳而不是格式化的字符串返回。
返回值
返回包含下一行信息的对象,或者FALSE
没有更多行。
例子
示例#1 ibase_fetch_object()示例
<?php
$dbh = ibase_connect($host, $username, $password
$stmt = 'SELECT * FROM tblname';
$sth = ibase_query($dbh, $stmt
while ($row = ibase_fetch_object($sth)) {
echo $row->email . "\n";
}
ibase_close($dbh
?>