<?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.strtolower.php',
    1 => 'strtolower',
    2 => 'Bir dizgenin harflerini k&uuml;&ccedil;&uuml;k harfe &ccedil;evirir',
  ),
  'up' => 
  array (
    0 => 'ref.strings.php',
    1 => 'Dizge İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.strtok.php',
    1 => 'strtok',
  ),
  'next' => 
  array (
    0 => 'function.strtoupper.php',
    1 => 'strtoupper',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'tr',
    'path' => 'reference/strings/functions/strtolower.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.strtolower" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">strtolower</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">strtolower</span> &mdash; <span class="dc-title">Bir dizgenin harflerini küçük harfe çevirir</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.strtolower-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>strtolower</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">
   Belirtilen <code class="parameter">dizge</code> dizgesindeki tüm ASCII abecesel
   karakterleri küçük harfe dönüştürerek elde edilen dizgeyi döndürür.
  </p>
  <p class="para">
   <code class="literal">&quot;A&quot;</code> (0x41) - <code class="literal">&quot;Z&quot;</code> aralığındaki ASCII
   karakterlerin baytlarına 32 eklenerek küçük harfe dönüştürülür.
  </p>
  <p class="para">
   İşlev UTF-8 kodlu dizgelerin içindeki çok baytlı karakterleri yok
   sayacağından yalnızca ASCII karakterlerin dönüştürülmesinde
   kullanılabilir.  Çok baytlı karakterlerin dönüştürülmesinde
   <span class="function"><a href="function.mb-strtolower.php" class="function">mb_strtolower()</a></span> kullanılabilir.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.strtolower-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.strtolower-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   Küçük harfli dizgeyle döner.
  </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.strtolower-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>8.2.0</td>
  <td>
   Büyük/küçük harf dönüşümü yalnızca ASCII karakterlere uygulandığından
   yerelin <span class="function"><a href="function.setlocale.php" class="function">setlocale()</a></span> ile atanması artık gerekmiyor.
  </td>
 </tr>


    </tbody>
   
  </table>

 </div>


 <div class="refsect1 examples" id="refsect1-function.strtolower-examples">
  <h3 class="title">Örnekler</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Örnek 1 - <span class="function"><strong>strtolower()</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 />$str </span><span style="color: #007700">= </span><span style="color: #DD0000">"Mini MİNİ bir KUŞ uçmuştu PENCEREME konmuştu."</span><span style="color: #007700">;<br /></span><span style="color: #0000BB">$str </span><span style="color: #007700">= </span><span style="color: #0000BB">strtolower</span><span style="color: #007700">(</span><span style="color: #0000BB">$str</span><span style="color: #007700">);<br />echo </span><span style="color: #0000BB">$str</span><span style="color: #007700">;<br /></span><span style="color: #FF8000">// PHP 5.3.0beta2-dev (cli) ile tr_TR.UTF-8 yerelindeki çıktısı:<br />// mini mİnİ bir kuŞ uçmuştu pencereme konmuştu.<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

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


 <div class="refsect1 notes" id="refsect1-function.strtolower-notes">
  <h3 class="title">Notlar</h3>
  <blockquote class="note"><p><strong class="note">Bilginize</strong>: 
<span class="simpara">Bu işlev ikil dosyalarla çalışırken
dosya içeriğini değiştirmez.</span></p></blockquote>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.strtolower-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.strtoupper.php" class="function" rel="rdfs-seeAlso">strtoupper()</a> - Bir dizgenin harflerini b&uuml;y&uuml;k harfe &ccedil;evirir</span></li>
    <li><span class="function"><a href="function.ucfirst.php" class="function" rel="rdfs-seeAlso">ucfirst()</a> - Dizgenin ilk karakterini b&uuml;y&uuml;k harfe &ccedil;evirir</span></li>
    <li><span class="function"><a href="function.ucwords.php" class="function" rel="rdfs-seeAlso">ucwords()</a> - Dizgedeki her s&ouml;zc&uuml;ğ&uuml;n ilk harfini b&uuml;y&uuml;k harf yapar</span></li>
    <li><span class="function"><a href="function.mb-strtolower.php" class="function" rel="rdfs-seeAlso">mb_strtolower()</a> - Dizgeyi k&uuml;&ccedil;&uuml;k harfli yapar</span></li>
   </ul>
  </p>
 </div>


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