<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/ref.strings.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'function.str-rot13.php',
    1 => 'str_rot13',
    2 => 'Bir dizgeye rot13 d&ouml;n&uuml;ş&uuml;m&uuml; uygular',
  ),
  'up' => 
  array (
    0 => 'ref.strings.php',
    1 => 'Dizge İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.str-replace.php',
    1 => 'str_replace',
  ),
  'next' => 
  array (
    0 => 'function.str-shuffle.php',
    1 => 'str_shuffle',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'tr',
    'path' => 'reference/strings/functions/str-rot13.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.str-rot13" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">str_rot13</h1>
  <p class="verinfo">(PHP 4 &gt;= 4.2.0, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">str_rot13</span> &mdash; <span class="dc-title">Bir dizgeye rot13 dönüşümü uygular</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.str-rot13-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>str_rot13</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$dizge</code></span>): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

  <p class="para rdfs-comment">
   <code class="parameter">dizge</code> bağımsız değişkenine ROT13 kodlaması uygular ve elde
   edilen dizgeyi döndürür.
  </p>
  <p class="para">
   ROT13 kodlaması, harf olmayan karakterlere dokunmadan her harfi alfabede 13
   harf kaydırır. Kodlama ve geriye kodlama aynı işlevle yapılır. Evvelce
   kodlanmış dizge bağımsız değişken olarak aktarılırsa kodlanmamış dizge elde
   edilir. (İşlev İngiliz alfabesinin 26 harflik oluşuna dayanır. Türkçe&#039;de 29
   harf bulunduğunu unutmayın.)
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.str-rot13-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">dizge</code></dt>
     <dd>
      <p class="para">
       Girdi dizgesi.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.str-rot13-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   Belirtilen dizgenin ROT13 sürümü döner.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-function.str-rot13-examples">
  <h3 class="title">Örnekler</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Örnek 1 - <span class="function"><strong>str_rot13()</strong></span> örneği</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /><br /></span><span style="color: #007700">echo </span><span style="color: #0000BB">str_rot13</span><span style="color: #007700">(</span><span style="color: #DD0000">'PHP 4.3.0'</span><span style="color: #007700">); </span><span style="color: #FF8000">// CUC 4.3.0<br /><br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

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


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