<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.fdf.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'function.fdf-set-value.php',
    1 => 'fdf_set_value',
    2 => 'Set the value of a field',
  ),
  'up' => 
  array (
    0 => 'ref.fdf.php',
    1 => 'FDF İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.fdf-set-target-frame.php',
    1 => 'fdf_set_target_frame',
  ),
  'next' => 
  array (
    0 => 'function.fdf-set-version.php',
    1 => 'fdf_set_version',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/fdf/functions/fdf-set-value.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.fdf-set-value" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">fdf_set_value</h1>
  <p class="verinfo">(PHP 4, PHP 5 &lt; 5.3.0, PECL fdf SVN)</p><p class="refpurpose"><span class="refname">fdf_set_value</span> &mdash; <span class="dc-title">Set the value of a field</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.fdf-set-value-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>fdf_set_value</strong></span>(<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.resource.php" class="type resource">resource</a></span> <code class="parameter">$fdf_document</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$fieldname</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span> <code class="parameter">$value</code></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.integer.php" class="type int">int</a></span> <code class="parameter">$isName</code><span class="initializer"> = ?</span></span><br>): <span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span></div>

  <p class="simpara">
   Sets the <code class="parameter">value</code> for the given field.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.fdf-set-value-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <dl>
   
    <dt><code class="parameter">fdf_document</code></dt>
    <dd>
     <span class="simpara">
      The FDF document handle, returned by <span class="function"><a href="function.fdf-create.php" class="function">fdf_create()</a></span>,
      <span class="function"><a href="function.fdf-open.php" class="function">fdf_open()</a></span> or <span class="function"><a href="function.fdf-open-string.php" class="function">fdf_open_string()</a></span>.
     </span>
    </dd>
   
   
    <dt><code class="parameter">fieldname</code></dt>
    <dd>
     <span class="simpara">
      Name of the FDF field, as a string.
     </span>
    </dd>
   
   
    <dt><code class="parameter">value</code></dt>
    <dd>
     <span class="simpara">
      This parameter will be stored as a string unless it is an array. In
      this case all array elements will be stored as a value array.
     </span>
    </dd>
   
   
    <dt><code class="parameter">isName</code></dt>
    <dd>
     <blockquote class="note"><p><strong class="note">Bilginize</strong>: 
      <span class="simpara">
       In older versions of the FDF toolkit last parameter determined if the
       field value was to be converted to a PDF Name (= 1) or set to a PDF
       String (= 0).
      </span>
      <span class="simpara">
       The value is no longer used in the current toolkit version 5.0. For
       compatibility reasons it is still supported as an optional parameter,
       but ignored internally.
      </span>
     </p></blockquote>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.fdf-set-value-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="simpara">
   Başarı durumunda <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong>, başarısızlık durumunda <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> döner.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.fdf-set-value-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <ul class="simplelist">
   <li><span class="function"><a href="function.fdf-get-value.php" class="function" rel="rdfs-seeAlso">fdf_get_value()</a> - Get the value of a field</span></li>
   <li><span class="function"><a href="function.fdf-remove-item.php" class="function" rel="rdfs-seeAlso">fdf_remove_item()</a> - Sets target frame for form</span></li>
  </ul>
 </div>


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