<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.dbase.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'function.dbase-get-record-with-names.php',
    1 => 'dbase_get_record_with_names',
    2 => 'Gets a record from a database as an associative array',
  ),
  'up' => 
  array (
    0 => 'ref.dbase.php',
    1 => 'dBase İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.dbase-get-record.php',
    1 => 'dbase_get_record',
  ),
  'next' => 
  array (
    0 => 'function.dbase-numfields.php',
    1 => 'dbase_numfields',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/dbase/functions/dbase-get-record-with-names.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.dbase-get-record-with-names" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">dbase_get_record_with_names</h1>
  <p class="verinfo">(PHP 5 &lt; 5.3.0, dbase 5, dbase 7)</p><p class="refpurpose"><span class="refname">dbase_get_record_with_names</span> &mdash; <span class="dc-title">
   Gets a record from a database as an associative array
  </span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.dbase-get-record-with-names-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>dbase_get_record_with_names</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$database</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$number</code></span>): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

  <p class="para rdfs-comment">
   Gets a record from a dBase database as an associative array.
  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.dbase-get-record-with-names-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">database</code></dt>
     <dd>
      <p class="para">
       The database resource, returned by <span class="function"><a href="function.dbase-open.php" class="function">dbase_open()</a></span>
       or <span class="function"><a href="function.dbase-create.php" class="function">dbase_create()</a></span>.
      </p>
     </dd>
    
    
     <dt><code class="parameter">number</code></dt>
     <dd>
      <p class="para">
       The index of the record between <code class="literal">1</code> and
       <code class="literal">dbase_numrecords($dbase_identifier)</code>.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.dbase-get-record-with-names-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   An associative array with the record. This will also include a key named
   <code class="literal">deleted</code> which is set to 1 if the record has been marked
   for deletion (see <span class="function"><a href="function.dbase-delete-record.php" class="function">dbase_delete_record()</a></span>).
   Therefore it is not possible to retrieve the value of a field named
   <code class="literal">deleted</code> with this function.
  </p>
  <p class="para">
   Her alan uygun bir PHP türüne dönüştürülür, bunlar hariç::
   <ul class="itemizedlist">
    <li class="listitem">
     <span class="simpara">
      Tarihler dize olarak kalır.
     </span>
    </li>
    <li class="listitem">
     <span class="simpara">
      DateTime tarihleri dizeye dönüştürülür.
     </span>
    </li>
    <li class="listitem">
     <span class="simpara">
      <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ığı dışında kalan tamsayılar dizeye dönüştürülür.
     </span>
    </li>
    <li class="listitem">
     <span class="simpara">
      dbase 7.0.0 öncesinde, (<code class="literal">L</code>) mantıksalları
      <code class="literal">1</code> veya <code class="literal">0</code>P&#039;a dönüştürülürdü.
     </span>
    </li>
   </ul>
  </p>
  <p class="para">
   On error, <span class="function"><strong>dbase_get_record_with_names()</strong></span> will return <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong>.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.dbase-get-record-with-names-changelog">
  <h3 class="title">Sürüm Bilgisi</h3>
  <table class="doctable informaltable">
   
    <thead>
     <tr>
      <th>Sürüm: </th>
      <th>Açıklama</th>
     </tr>

    </thead>

    <tbody class="tbody">
     <tr>
      <td>PECL dbase 7.0.0</td>
      <td>
       <code class="parameter">database</code> is now a <span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span>
       instead of an <span class="type"><a href="language.types.integer.php" class="type int">int</a></span>.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 examples" id="refsect1-function.dbase-get-record-with-names-examples">
  <h3 class="title">Örnekler</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Örnek 1 Listing all the registered members in the database</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #FF8000">// open in read-only mode<br /></span><span style="color: #0000BB">$db </span><span style="color: #007700">= </span><span style="color: #0000BB">dbase_open</span><span style="color: #007700">(</span><span style="color: #DD0000">'/tmp/test.dbf'</span><span style="color: #007700">, </span><span style="color: #0000BB">0</span><span style="color: #007700">);<br /><br />if (</span><span style="color: #0000BB">$db</span><span style="color: #007700">) {<br />  </span><span style="color: #0000BB">$record_numbers </span><span style="color: #007700">= </span><span style="color: #0000BB">dbase_numrecords</span><span style="color: #007700">(</span><span style="color: #0000BB">$db</span><span style="color: #007700">);<br />  for (</span><span style="color: #0000BB">$i </span><span style="color: #007700">= </span><span style="color: #0000BB">1</span><span style="color: #007700">; </span><span style="color: #0000BB">$i </span><span style="color: #007700">&lt;= </span><span style="color: #0000BB">$record_numbers</span><span style="color: #007700">; </span><span style="color: #0000BB">$i</span><span style="color: #007700">++) {<br />      </span><span style="color: #0000BB">$row </span><span style="color: #007700">= </span><span style="color: #0000BB">dbase_get_record_with_names</span><span style="color: #007700">(</span><span style="color: #0000BB">$db</span><span style="color: #007700">, </span><span style="color: #0000BB">$i</span><span style="color: #007700">);<br />      if (</span><span style="color: #0000BB">$row</span><span style="color: #007700">[</span><span style="color: #DD0000">'ismember'</span><span style="color: #007700">] == </span><span style="color: #0000BB">1</span><span style="color: #007700">) {<br />          echo </span><span style="color: #DD0000">"Member #</span><span style="color: #0000BB">$i</span><span style="color: #DD0000">: " </span><span style="color: #007700">. </span><span style="color: #0000BB">trim</span><span style="color: #007700">(</span><span style="color: #0000BB">$row</span><span style="color: #007700">[</span><span style="color: #DD0000">'name'</span><span style="color: #007700">]) . </span><span style="color: #DD0000">"\n"</span><span style="color: #007700">;<br />      }<br />  }<br />}<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

   </div>
  </p>
 </div>

 <div class="refsect1 seealso" id="refsect1-function.dbase-get-record-with-names-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.dbase-get-record.php" class="function" rel="rdfs-seeAlso">dbase_get_record()</a> - Gets a record from a database as an indexed array</span></li>
   </ul>
  </p>
 </div>

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