<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.com.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'function.variant-and.php',
    1 => 'variant_and',
    2 => 'İki varyant &uuml;zerinde ikilik VE işlemi yapar',
  ),
  'up' => 
  array (
    0 => 'ref.com.php',
    1 => 'COM İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.variant-add.php',
    1 => 'variant_add',
  ),
  'next' => 
  array (
    0 => 'function.variant-cast.php',
    1 => 'variant_cast',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'tr',
    'path' => 'reference/com/functions/variant-and.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.variant-and" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">variant_and</h1>
  <p class="verinfo">(PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">variant_and</span> &mdash; <span class="dc-title">İki varyant üzerinde ikilik VE işlemi yapar</span></p>

 </div>
 <div class="refsect1 description" id="refsect1-function.variant-and-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>variant_and</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span> <code class="parameter">$sol</code></span>, <span class="methodparam"><span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span> <code class="parameter">$sag</code></span>): <span class="type"><a href="class.variant.php" class="type variant">variant</a></span></div>

  <p class="para rdfs-comment">
   İkilik VE işlemi yapar. Normal VE işleminden oldukça farklı olduğunu
   belirtmemiz gerekir.
  </p>
 </div>

 <div class="refsect1 parameters" id="refsect1-function.variant-and-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">sol</code></dt>
     <dd>
      <p class="para">
       Sol terim.
      </p>
     </dd>
    
    
     <dt><code class="parameter">sag</code></dt>
     <dd>
      <p class="para">
       Sağ terim.
      </p>
     </dd>
    
   </dl>
   <blockquote class="note"><p><strong class="note">Bilginize</strong>: 
<p class="para">
 Tüm varyant aritmetik işlevlerinde olduğu gibi, bu işlevin bağımsız değişkenleri de
 bir PHP yerel türü (int, string, floating point, bool veya <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong>) veya COM,
 VARIANT veya DOTNET sınıfının bir örneği olabilir. PHP yerel türleri,
 VARIANT sınıfı için kurucuda bulunan kurallar kullanılarak varyantlara
 dönüştürülür. Öntanımlı özelliklerinin değerine sahip olacak  COM ve DOTNET
 nesneleri variant değeri olarak alınır ve kullanılır.
</p>
<p class="para">
 Varyant aritmetik işlevleri, COM kütüphanesindeki benzer şekilde
 adlandırılmış işlevlerin sarmalayıcılardır; bu işlevler hakkında daha fazla
 bilgi için MSDN kütüphanesine bakılabilir. PHP işlevleri biraz farklı
 adlandırılır; örneğin PHP&#039;deki <span class="function"><a href="function.variant-add.php" class="function">variant_add()</a></span>, MSDN
 belgelerinde <code class="literal">VarAdd()</code> işlevine karşılık gelir
</p></p></blockquote>
  </p>
 </div>

 <div class="refsect1 returnvalues" id="refsect1-function.variant-and-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   <table class="doctable table">
    <caption><strong>Varyant VEleme Kuralları</strong></caption>
    
     <thead>
      <tr>
       <th><code class="parameter">sol</code></th>
       <th><code class="parameter">sag</code></th>
       <th>Sonuç</th>
      </tr>

     </thead>

     <tbody class="tbody">
      <tr><td><strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong></td></tr>

      <tr><td><strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></td></tr>

      <tr><td><strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></td></tr>

      <tr><td><strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></td></tr>

      <tr><td><strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></td></tr>

      <tr><td><strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></td></tr>

      <tr><td><strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></td></tr>

      <tr><td><strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></td></tr>

      <tr><td><strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></td><td><strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></td></tr>

     </tbody>
    
   </table>

  </p>
 </div>

 <div class="refsect1 errors" id="refsect1-function.variant-and-errors">
  <h3 class="title">Hatalar/İstisnalar</h3>
  <p class="para">
   Başarısızlık durumunda bir <span class="classname"><a href="class.com-exception.php" class="classname">com_exception</a></span> yavrulanır.
  </p>
 </div>

 <div class="refsect1 seealso" id="refsect1-function.variant-and-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.variant-or.php" class="function" rel="rdfs-seeAlso">variant_or()</a> - İki varyant &uuml;zerinde mantıksal ayırma işlemi yapar</span></li>
   </ul>
  </p>
 </div>

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