function.ibase-fetch-row.html

来自「php的帮助文档,涉及到PHP的案例和基本语法,以及实际应用内容」· HTML 代码 · 共 111 行

HTML
111
字号
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN" "http://www.w3.org/TR/html4/loose.dtd"><html> <head>  <title>Fetch a row from an InterBase database</title>  <meta http-equiv="content-type" content="text/html; charset=UTF-8"> </head> <body><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="function.ibase-fetch-object.html">ibase_fetch_object</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.ibase-field-info.html">ibase_field_info</a></div> <div class="up"><a href="ref.ibase.html">Firebird/InterBase Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div><hr /><div id="function.ibase-fetch-row" class="refentry"> <div class="refnamediv">  <h1 class="refname">ibase_fetch_row</h1>  <p class="verinfo">(PHP 4, PHP 5)</p><p class="refpurpose"><span class="refname">ibase_fetch_row</span> &mdash; <span class="dc-title">Fetch a row from an InterBase database</span></p> </div>  <div class="refsect1 description">  <h3 class="title">Description</h3>  <div class="methodsynopsis dc-description">   <span class="type">array</span> <span class="methodname"><b><b>ibase_fetch_row</b></b></span>    ( <span class="methodparam"><span class="type">resource</span> <tt class="parameter">$result_identifier</tt></span>   [, <span class="methodparam"><span class="type">int</span> <tt class="parameter">$fetch_flag</tt></span>  ] )</div>  <p class="para rdfs-comment">   <b>ibase_fetch_row()</b> fetches one row of data from the   given result set.  </p>  <p class="para">   Subsequent calls to <b>ibase_fetch_row()</b>   return the next row in the result set, or <b><tt>FALSE</tt></b> if there are no   more rows.  </p> </div> <div class="refsect1 parameters">  <h3 class="title">Parameters</h3>  <p class="para">   <dl>    <dt>     <span class="term"><i><tt class="parameter">result_identifier</tt></i></span>     <dd>      <p class="para">       An InterBase result identifier.      </p>     </dd>    </dt>    <dt>     <span class="term"><i><tt class="parameter">fetch_flag</tt></i></span>     <dd>      <p class="para">       <i><tt class="parameter">fetch_flag</tt></i> is a combination of the constants       <b><tt>IBASE_TEXT</tt></b> and <b><tt>IBASE_UNIXTIME</tt></b>       ORed together. Passing <b><tt>IBASE_TEXT</tt></b> will cause this       function to return BLOB contents instead of BLOB ids. Passing       <b><tt>IBASE_UNIXTIME</tt></b> will cause this function to return       date/time values as Unix timestamps instead of as formatted strings.      </p>     </dd>    </dt>   </dl>  </p> </div> <div class="refsect1 returnvalues">  <h3 class="title">Return Values</h3>  <p class="para">   Returns an array that corresponds to the fetched row, or <b><tt>FALSE</tt></b> 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">  <h3 class="title">See Also</h3>  <p class="para">   <ul class="simplelist">    <li class="member"><a href="function.ibase-fetch-assoc.html" class="function" rel="rdfs-seeAlso">ibase_fetch_assoc()</a></li>    <li class="member"><a href="function.ibase-fetch-object.html" class="function" rel="rdfs-seeAlso">ibase_fetch_object()</a></li>   </ul>  </p> </div></div><hr /><div style="text-align: center;"> <div class="prev" style="text-align: left; float: left;"><a href="function.ibase-fetch-object.html">ibase_fetch_object</a></div> <div class="next" style="text-align: right; float: right;"><a href="function.ibase-field-info.html">ibase_field_info</a></div> <div class="up"><a href="ref.ibase.html">Firebird/InterBase Functions</a></div> <div class="home"><a href="index.html">PHP Manual</a></div></div></body></html>

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?