<?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 => 'it',
  ),
  'this' => 
  array (
    0 => 'function.dbase-get-record.php',
    1 => 'dbase_get_record',
    2 => 'Estrae un record da un database dBase',
  ),
  'up' => 
  array (
    0 => 'ref.dbase.php',
    1 => 'dBase Funzioni',
  ),
  'prev' => 
  array (
    0 => 'function.dbase-get-header-info.php',
    1 => 'dbase_get_header_info',
  ),
  'next' => 
  array (
    0 => 'function.dbase-get-record-with-names.php',
    1 => 'dbase_get_record_with_names',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'it',
    'path' => 'reference/dbase/functions/dbase-get-record.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" class="refentry">
   <div class="refnamediv">
    <h1 class="refname">dbase_get_record</h1>
    <p class="verinfo">(PHP 5 &lt; 5.3.0, dbase 5, dbase 7)</p><p class="refpurpose"><span class="refname">dbase_get_record</span> &mdash; <span class="dc-title">Estrae un record da un database dBase</span></p>

   </div>
   <div class="refsect1 unknown-247" id="refsect1-function.dbase-get-record-unknown-247">
    <h3 class="title">Descrizione</h3>
     <div class="methodsynopsis dc-description">
      <span class="methodname"><strong>dbase_get_record</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$dbase_identifier</code></span>, <span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$record</code></span>): <span class="type"><a href="language.types.array.php" class="type array">array</a></span></div>

    <p class="para rdfs-comment">
     Restituisce i dati da <code class="parameter">record</code> in un array. 
     L&#039;array è indicizzato partendo da 0, e include un membro associativo 
     chiamato &#039;deleted&#039; che è settato a 1 se il record è stato marcato per 
     la cancellazione (vedere 
     <span class="function"><a href="function.dbase-delete-record.php" class="function">dbase_delete_record()</a></span>).
    </p>
    <p class="para">
     Ogni campo è convertito all&#039;appropriato tipo PHP, Fanno eccezione:
     <ul class="itemizedlist">
      <li class="listitem">
       <span class="simpara">
        Le date, che sono lasciate come stringhe.
       </span>
      </li>
      <li class="listitem">
       <span class="simpara">
        Gli interi che avrebbero causato un overflow (&gt; 32 bits) 
        sono restituiti come stringhe.
       </span>
      </li>
     </ul>
    </p>
   </div>

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