mirror of
https://github.com/fofolee/uTools-Manuals.git
synced 2025-06-18 05:26:57 +08:00
96 lines
3.5 KiB
HTML
96 lines
3.5 KiB
HTML
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd">
|
|
<html>
|
|
<head>
|
|
<meta http-equiv="content-type" content="text/html; charset=UTF-8">
|
|
<title>Fetch a row from an InterBase database</title>
|
|
</head>
|
|
<body class="docs"><div id="layout">
|
|
<div id="layout-content"><div id="function.ibase-fetch-row" class="refentry">
|
|
<div class="refnamediv">
|
|
<h1 class="refname">ibase_fetch_row</h1>
|
|
<p class="verinfo">(PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">ibase_fetch_row</span> — <span class="dc-title">Fetch a row from an InterBase database</span></p>
|
|
|
|
</div>
|
|
|
|
<div class="refsect1 description" id="refsect1-function.ibase-fetch-row-description">
|
|
<h3 class="title">说明</h3>
|
|
<div class="methodsynopsis dc-description">
|
|
<span class="methodname"><strong>ibase_fetch_row</strong></span>
|
|
( <span class="methodparam"><span class="type">resource</span> <code class="parameter">$result_identifier</code></span>
|
|
[, <span class="methodparam"><span class="type">int</span> <code class="parameter">$fetch_flag</code><span class="initializer"> = 0</span></span>
|
|
] ) : <span class="type">array</span></div>
|
|
|
|
<p class="para rdfs-comment">
|
|
<span class="function"><strong>ibase_fetch_row()</strong></span> fetches one row of data from the
|
|
given result set.
|
|
</p>
|
|
<p class="para">
|
|
Subsequent calls to <span class="function"><strong>ibase_fetch_row()</strong></span>
|
|
return the next row in the result set, or <strong><code>FALSE</code></strong> if there are no
|
|
more rows.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 parameters" id="refsect1-function.ibase-fetch-row-parameters">
|
|
<h3 class="title">参数</h3>
|
|
<p class="para">
|
|
<dl>
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">result_identifier</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
An InterBase result identifier.
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
|
|
<dt>
|
|
<code class="parameter">fetch_flag</code></dt>
|
|
|
|
<dd>
|
|
|
|
<p class="para">
|
|
<code class="parameter">fetch_flag</code> is a combination of the constants
|
|
<strong><code>IBASE_TEXT</code></strong> and <strong><code>IBASE_UNIXTIME</code></strong>
|
|
ORed together. Passing <strong><code>IBASE_TEXT</code></strong> will cause this
|
|
function to return BLOB contents instead of BLOB ids. Passing
|
|
<strong><code>IBASE_UNIXTIME</code></strong> will cause this function to return
|
|
date/time values as Unix timestamps instead of as formatted strings.
|
|
</p>
|
|
</dd>
|
|
|
|
|
|
</dl>
|
|
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 returnvalues" id="refsect1-function.ibase-fetch-row-returnvalues">
|
|
<h3 class="title">返回值</h3>
|
|
<p class="para">
|
|
Returns an array that corresponds to the fetched row, or <strong><code>FALSE</code></strong> if there
|
|
are no more rows. Each result column is stored in an array offset,
|
|
starting at offset 0.
|
|
</p>
|
|
</div>
|
|
|
|
|
|
<div class="refsect1 seealso" id="refsect1-function.ibase-fetch-row-seealso">
|
|
<h3 class="title">参见</h3>
|
|
<p class="para">
|
|
<ul class="simplelist">
|
|
<li class="member"><span class="function"><a href="ibase_fetch_assoc.html" class="function" rel="rdfs-seeAlso">ibase_fetch_assoc()</a> - Fetch a result row from a query as an associative array</span></li>
|
|
<li class="member"><span class="function"><a href="ibase_fetch_object.html" class="function" rel="rdfs-seeAlso">ibase_fetch_object()</a> - Get an object from a InterBase database</span></li>
|
|
</ul>
|
|
</p>
|
|
</div>
|
|
|
|
|
|
</div></div></div></body></html> |