<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.ibase.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'function.ibase-fetch-row.php',
    1 => 'ibase_fetch_row',
    2 => 'Fetch a row from an InterBase database',
  ),
  'up' => 
  array (
    0 => 'ref.ibase.php',
    1 => 'Функції Firebird/InterBase',
  ),
  'prev' => 
  array (
    0 => 'function.ibase-fetch-object.php',
    1 => 'ibase_fetch_object',
  ),
  'next' => 
  array (
    0 => 'function.ibase-field-info.php',
    1 => 'ibase_field_info',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/ibase/functions/ibase-fetch-row.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<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 &lt; 7.4.0)</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" 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"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$result_identifier</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$fetch_flag</code><span class="initializer"> = 0</span></span>): <span class="type"><a href="language.types.array.php" class="type array">array</a></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><a href="reserved.constants.php#constant.false">false</a></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><a href="reserved.constants.php#constant.false">false</a></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><span class="function"><a href="function.ibase-fetch-assoc.php" class="function" rel="rdfs-seeAlso">ibase_fetch_assoc()</a> - Fetch a result row from a query as an associative array</span></li>
    <li><span class="function"><a href="function.ibase-fetch-object.php" class="function" rel="rdfs-seeAlso">ibase_fetch_object()</a> - Get an object from a InterBase database</span></li>
   </ul>
  </p>
 </div>


</div><?php manual_footer($setup); ?>