<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.sqlite3result.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'sqlite3result.fetcharray.php',
    1 => 'SQLite3Result::fetchArray',
    2 => 'Sonu&ccedil; satırını bir dizi olarak d&ouml;nd&uuml;r&uuml;r',
  ),
  'up' => 
  array (
    0 => 'class.sqlite3result.php',
    1 => 'SQLite3Result',
  ),
  'prev' => 
  array (
    0 => 'sqlite3result.construct.php',
    1 => 'SQLite3Result::__construct',
  ),
  'next' => 
  array (
    0 => 'sqlite3result.finalize.php',
    1 => 'SQLite3Result::finalize',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'tr',
    'path' => 'reference/sqlite3/sqlite3result/fetcharray.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="sqlite3result.fetcharray" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">SQLite3Result::fetchArray</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.3.0, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">SQLite3Result::fetchArray</span> &mdash; <span class="dc-title">Sonuç satırını bir dizi olarak döndürür</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-sqlite3result.fetcharray-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description"><span class="modifier">public</span>
   <span class="methodname"><strong>SQLite3Result::fetchArray</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$kip</code><span class="initializer"> = SQLITE3_BOTH</span></span>): <span class="type"><span class="type"><a href="language.types.array.php" class="type array">array</a></span>|<span class="type"><a href="language.types.singleton.php" class="type false">false</a></span></span></div>

  <p class="para rdfs-comment">
   Sonuç satırını <code class="parameter">kip</code> ile belirtildiği gibi satır
   isimleriyle veya satır numaraları ile ya da her ikisiyle de indisleyerek bir
   dizi olarak döndürür.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-sqlite3result.fetcharray-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">kip</code></dt>
     <dd>
      <p class="para">
       Döndürülecek dizinin nasıl düzenleneceğini belirler. Aşağıdaki
       sabitlerden biri olabilir. <strong><code><a href="sqlite3.constants.php#constant.sqlite3-both">SQLITE3_BOTH</a></code></strong>
       öntanımlıdır.
       <ul class="itemizedlist">
        <li class="listitem">
         <p class="para">
          <strong><code><a href="sqlite3.constants.php#constant.sqlite3-assoc">SQLITE3_ASSOC</a></code></strong>: Dizi sütun isimleriyle
          indislenir.
         </p>
        </li>
        <li class="listitem">
         <p class="para">
          <strong><code><a href="sqlite3.constants.php#constant.sqlite3-num">SQLITE3_NUM</a></code></strong>: Dizi sütun numaraları ile
          indislenir. İlk sütunun indisi 0&#039;dır.
         </p>
        </li>
        <li class="listitem">
         <p class="para">
          <strong><code><a href="sqlite3.constants.php#constant.sqlite3-both">SQLITE3_BOTH</a></code></strong>: Dizi hem sütun isimleriyle hem de
          sütun numaraları ile indislenir. İlk sütunun indisi 0&#039;dır.
         </p>
        </li>
       </ul>
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-sqlite3result.fetcharray-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   Satır isimleriyle veya satır numaraları ile ya da her ikisiyle de
   indislenmiş bir dizi döner. Hiç satır yoksa <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> döner.
  </p>
  <p class="para">
   Dönen dizinin değerlerinin türü şu SQLite3 türleriyle eşleştirilir:
   <strong><code><a href="reserved.constants.php#constant.php-int-min">PHP_INT_MIN</a></code></strong>..<strong><code><a href="reserved.constants.php#constant.php-int-max">PHP_INT_MAX</a></code></strong>
   aralığındaki tamsayılar <span class="type"><a href="language.types.integer.php" class="type int">int</a></span> türüne, aksi takdirde
   <span class="type"><a href="language.types.string.php" class="type string">string</a></span> türüne, gerçel sayılar <span class="type"><a href="language.types.float.php" class="type float">float</a></span> türüne,
   <code class="literal">NULL</code> değerler <span class="type"><a href="language.types.null.php" class="type null">null</a></span> türüne, dizgeler ve
   blob&#039;lar ise <span class="type"><a href="language.types.string.php" class="type string">string</a></span> türüne eşlenir.
  </p>
 </div>


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