<?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.htmlspecialchars.php',
    1 => 'htmlspecialchars',
    2 => '&Ouml;zel karakterleri HTML &ouml;ğeleri haline getirir',
  ),
  'up' => 
  array (
    0 => 'ref.strings.php',
    1 => 'Dizge İşlevleri',
  ),
  'prev' => 
  array (
    0 => 'function.htmlentities.php',
    1 => 'htmlentities',
  ),
  'next' => 
  array (
    0 => 'function.htmlspecialchars-decode.php',
    1 => 'htmlspecialchars_decode',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'tr',
    'path' => 'reference/strings/functions/htmlspecialchars.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="function.htmlspecialchars" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">htmlspecialchars</h1>
  <p class="verinfo">(PHP 4, PHP 5, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">htmlspecialchars</span> &mdash; <span class="dc-title">Özel karakterleri HTML öğeleri haline getirir</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-function.htmlspecialchars-description">
  <h3 class="title">Açıklama</h3>
  <div class="methodsynopsis dc-description">
   <span class="methodname"><strong>htmlspecialchars</strong></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">$dizge</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">$seçenekler</code><span class="initializer"> = <strong><code><a href="string.constants.php#constant.ent-quotes">ENT_QUOTES</a></code></strong> | <strong><code><a href="string.constants.php#constant.ent-substitute">ENT_SUBSTITUTE</a></code></strong> | <strong><code><a href="string.constants.php#constant.ent-html401">ENT_HTML401</a></code></strong></span></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><span class="type"><a href="language.types.null.php" class="type null">?</a></span><span class="type"><a href="language.types.string.php" class="type string">string</a></span></span> <code class="parameter">$kodlama</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong></span></span>,<br>&nbsp;&nbsp;&nbsp;&nbsp;<span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$çifte_kodlama</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong></span></span><br>): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

  <p class="para rdfs-comment">
   Bazı karakterler HTML&#039;de özel anlama sahiptir ve anlamlarını korumaları
   için HTML öğesi olarak gösterilmesi gerekir. Bu işlev bu dönüşümleri
   yapılmış olarak bir dizge döndürür. Eğer ilişkili isimli öğelere sahip tüm
   girdi alt dizgelerinin dönüştürülmesi gerekiyorsa bu işlev yerine
   <span class="function"><a href="function.htmlentities.php" class="function">htmlentities()</a></span> işlevi kullanılmalıdır.
  </p>
  <p class="para">
   If the input string passed to this function and the final document share the
   same character set, this function is sufficient to prepare input for
   inclusion in most contexts of an HTML document. If, however, the input can
   represent characters that are not coded in the final document character set
   and you wish to retain those characters (as numeric or named entities),
   both this function and <span class="function"><a href="function.htmlentities.php" class="function">htmlentities()</a></span> (which only encodes
   substrings that have named entity equivalents) may be insufficient.
   You may have to use <span class="function"><a href="function.mb-encode-numericentity.php" class="function">mb_encode_numericentity()</a></span> instead.
  </p>
  <p class="para">
   <table class="doctable table">
    <caption><strong>Uygulanan dönüşümler</strong></caption>
    
     <thead>
      <tr>
       <th>Karakter</th>
       <th>Karakterin karşılığı</th>
      </tr>

     </thead>

     <tbody class="tbody">
      <tr>
       <td><code class="literal">&amp;</code> (ampersand)</td>
       <td><code class="literal">&amp;amp;</code></td>
      </tr>

      <tr>
       <td><code class="literal">&quot;</code> (çift tırnak)</td>
       <td><strong><code><a href="string.constants.php#constant.ent-noquotes">ENT_NOQUOTES</a></code></strong> belirtilmezse <code class="literal">&amp;quot;</code> atanır</td>
      </tr>

      <tr>
       <td><code class="literal">&#039;</code> (tek tırnak)</td>
       <td>
        <code class="literal">&amp;#039;</code> (<strong><code><a href="string.constants.php#constant.ent-html401">ENT_HTML401</a></code></strong> için) veya sadece <strong><code><a href="string.constants.php#constant.ent-quotes">ENT_QUOTES</a></code></strong> belirtildiği durumda <code class="literal">&amp;apos;</code> (<strong><code><a href="string.constants.php#constant.ent-xml1">ENT_XML1</a></code></strong>, <strong><code><a href="string.constants.php#constant.ent-xhtml">ENT_XHTML</a></code></strong> veya <strong><code><a href="string.constants.php#constant.ent-html5">ENT_HTML5</a></code></strong> için)
       </td>
      </tr>

      <tr>
       <td><code class="literal">&lt;</code> (küçüktür)</td>
       <td><code class="literal">&amp;lt;</code></td>
      </tr>

      <tr>
       <td><code class="literal">&gt;</code> (büyüktür)</td>
       <td><code class="literal">&amp;gt;</code></td>
      </tr>

     </tbody>
    
   </table>

  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-function.htmlspecialchars-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">
       Dönüştürülecek dizge.
      </p>
     </dd>
    
    
     <dt><code class="parameter">seçenekler</code></dt>
     <dd>
      <p class="para">
       Geçersiz kod dizilimlerinin, kullanılan belge türünün ve tırnakların nasıl ele alınacağını belirten aşağıdaki seçenekler bitsel VEYAlanarak
       <code class="parameter">seçenekler</code> bağımsız değişkeninde belirtilebilir.
       <code class="literal">ENT_QUOTES | ENT_SUBSTITUTE | ENT_HTML401</code>
       öntanımlıdır.
       <table class="doctable table">
        <caption><strong>Olası sabit <code class="parameter">seçenekler</code>i</strong></caption>
        
         <thead>
          <tr>
           <th>Sabit İsmi</th>
           <th>Açıklama</th>
          </tr>

         </thead>

         <tbody class="tbody">
          <tr>
           <td><strong><code><a href="string.constants.php#constant.ent-compat">ENT_COMPAT</a></code></strong></td>
           <td>Sadece çift tırnaklar dönüştürülür, tek tırnaklara
           dokunulmaz.</td>
          </tr>

          <tr>
           <td><strong><code><a href="string.constants.php#constant.ent-quotes">ENT_QUOTES</a></code></strong></td>
           <td>Çift tırnaklara ilaveten tek tırnaklar da dönüştürülür.
           </td>
          </tr>

          <tr>
           <td><strong><code><a href="string.constants.php#constant.ent-noquotes">ENT_NOQUOTES</a></code></strong></td>
           <td>Ne tek ne de çift tırnaklar dönüştürülür.</td>
          </tr>

          <tr>
           <td><strong><code><a href="string.constants.php#constant.ent-ignore">ENT_IGNORE</a></code></strong></td>
           <td>
            Geçersiz kod dizilimlerinde boş dizge döndürülmeyip seesizce
            yoksayma yoluna gidilir.
            <a href="http://unicode.org/reports/tr36/#Deletion_of_Noncharacters" class="link external">&raquo;&nbsp;Güvenlikle ilgili
            etkiler</a> olabileceğinden bu seçeneğin kullanımı
            önerilmemektedir.
           </td>
          </tr>

          <tr>
           <td><strong><code><a href="string.constants.php#constant.ent-substitute">ENT_SUBSTITUTE</a></code></strong></td>
           <td>
            Geçersiz kod dizilimi için boş bir dizge döndürülmeyip dizilimin
            yerine Unicode Değiştirme Karakteri (U+FFFD veya &amp;#FFFD;)
            yerleştirilir.
           </td>
          </tr>

          <tr>
           <td><strong><code><a href="string.constants.php#constant.ent-disallowed">ENT_DISALLOWED</a></code></strong></td>
           <td>
            Geçersiz kod dizilimini olduğu gibi bırakmak yerine Unicode
            Değiştirme Karakteri (U+FFFD veya &amp;#FFFD;) ile değiştirilir.
            Örneğin, XML belgelerin gömülü harici içerikle iyi biçimliliğini
            sağlamak için bu seçenek kullanışlı olabilir.
           </td>
          </tr>

          <tr>
           <td><strong><code><a href="string.constants.php#constant.ent-html401">ENT_HTML401</a></code></strong></td>
           <td>
            Kod HTML 4.01 olarak ele alınır.
           </td>
          </tr>

          <tr>
           <td><strong><code><a href="string.constants.php#constant.ent-xml1">ENT_XML1</a></code></strong></td>
           <td>
            Kod XML 1 olarak ele alınır.
           </td>
          </tr>

          <tr>
           <td><strong><code><a href="string.constants.php#constant.ent-xhtml">ENT_XHTML</a></code></strong></td>
           <td>
            Kod XHTML olarak ele alınır.
           </td>
          </tr>

          <tr>
           <td><strong><code><a href="string.constants.php#constant.ent-html5">ENT_HTML5</a></code></strong></td>
           <td>
            Kod HTML 5 olarak ele alınır.
           </td>
          </tr>

         </tbody>
        
       </table>

      </p>
     </dd>
    
    
     <dt><code class="parameter">karküm</code></dt>
     <dd>
      <p class="para">Karakterleri dönüştürürken kullanılan
kodlamayı tanımlayan seçimlik bağımsız değişken.</p>
<p class="para">Belirtilmezse
<code class="parameter">kodlama</code> için
<a href="ini.core.php#ini.default-charset" class="link">default_charset</a> yapılandırma
seçeneğinin değeri öntanımlıdır.</p>
<p class="para">Bu bağımsız değişken teknik olarak
seçimlikse de kodunuz için gereken değeri atamanız gerekir. Çünkü
<a href="ini.core.php#ini.default-charset" class="link">default_charset</a> yapılandırma
seçeneğine hatalı bir değer atanmış olabilir.</p>
      <p class="para">
       Bu işlevin amacı gereği, <code class="literal">ISO-8859-1</code>,
       <code class="literal">ISO-8859-15</code>, <code class="literal">UTF-8</code>,
       <code class="literal">cp866</code>, <code class="literal">cp1251</code>,
       <code class="literal">cp1252</code> ve <code class="literal">KOI8-R</code> karakter
       kümeleri, aynı konumları işgal eden
       (<span class="function"><strong>htmlspecialchars()</strong></span> işlevinden etkilenen)
       karakterler bakımından eşdeğerdir.
      </p>
      


<p class="para">
 Aşağıdaki karakter kümeleri desteklenmektedir.
 <table class="doctable table">
  <caption><strong>Desteklenen karakter kümeleri</strong></caption>
  
   <thead>
    <tr>
     <th>Karakter kümesi</th>
     <th>Takma adı</th>
     <th>Açıklama</th>
    </tr>

   </thead>

   <tbody class="tbody">
    <tr>
     <td>ISO-8859-1</td>
     <td>ISO8859-1</td>
     <td>
      Batı Avrupa, Latin-1
     </td>
    </tr>

    <tr>
     <td>ISO-8859-5</td>
     <td>ISO8859-5</td>
     <td>
      Az kullanılan kril küme (Latin/Cyrillic).
     </td>
    </tr>

    <tr>
     <td>ISO-8859-15</td>
     <td>ISO8859-15</td>
     <td>
      Doğu Avrupa, Latin-9. Euro işaretini ekler, Fransızca ve Fince
      harfler Latin-1&#039;de (ISO-8859-1) yoktur.
     </td>
    </tr>

    <tr>
     <td>UTF-8</td>
     <td class="empty">&nbsp;</td>
     <td>
      ASCII uyumlu 8 bitlik çok baytlı Unicode.
     </td>
    </tr>

    <tr>
     <td>cp866</td>
     <td>ibm866, 866</td>
     <td>
      DOS&#039;a özgü Kril karakter kümesi.
     </td>
    </tr>

    <tr>
     <td>cp1251</td>
     <td>Windows-1251, win-1251, 1251</td>
     <td>
      Windows&#039;a özgü Kril karakter kümesi.
     </td>
    </tr>

    <tr>
     <td>cp1252</td>
     <td>Windows-1252, 1252</td>
     <td>
      Doğu Avrupa için Windows&#039;a özgü karakter kümesi.
     </td>
    </tr>

    <tr>
     <td>KOI8-R</td>
     <td>koi8-ru, koi8r</td>
     <td>
      Rusça.
     </td>
    </tr>

    <tr>
     <td>BIG5</td>
     <td>950</td>
     <td>
      Geleneksel Çince, aslında Tayvan&#039;da kullanılır.
     </td>
    </tr>

    <tr>
     <td>GB2312</td>
     <td>936</td>
     <td>
      Basitleştirilmiş Çince, ulusal standart karakter kümesi.
     </td>
    </tr>

    <tr>
     <td>BIG5-HKSCS</td>
     <td class="empty">&nbsp;</td>
     <td>
      Geleneksel Çince, Hong Kong eklentisi ile Big5.
     </td>
    </tr>

    <tr>
     <td>Shift_JIS</td>
     <td>SJIS, 932</td>
     <td>
      Japonca.
     </td>
    </tr>

    <tr>
     <td>EUC-JP</td>
     <td>EUCJP, eucJP-win</td>
     <td>
      Japonca.
     </td>
    </tr>

    <tr>
     <td>MacRoman</td>
     <td class="empty">&nbsp;</td>
     <td>
      Mac OS tarafından kullanılmış karakter kümesi.
     </td>
    </tr>

    <tr>
     <td><code class="literal">&#039;&#039;</code></td>
     <td class="empty">&nbsp;</td>
     <td>
      Boş bir dize, karakter kümesini,
      komut dosyası kodlamasından (Zend multibyte),
      <a href="ini.core.php#ini.default-charset" class="link">default_charset</a> ve
      geçerli yerel ayardan (bkz. <span class="function"><a href="function.nl-langinfo.php" class="function">nl_langinfo()</a></span> ve
      <span class="function"><a href="function.setlocale.php" class="function">setlocale()</a></span>) algılamayı bu sırayla etkinleştirir.
      Önerilmez.
     </td>
    </tr>

   </tbody>
  
 </table>

 <blockquote class="note"><p><strong class="note">Bilginize</strong>: 
  <span class="simpara">
   Bunlardan başka karakter kümesi tanınmaz. Yerine öntanımlı karakter kümesi
   kullanılır ve bir uyarı çıktılanır.
  </span>
 </p></blockquote>
</p>


     </dd>
    
    
     <dt><code class="parameter">çifte_kodlama</code></dt>
     <dd>
      <p class="para">
       Bu bağımsız değişkende <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> belirtilirse zaten kodlanmış HTML öğeleri
       tekrar kodlanmaz. Öntanımlı olarak herşey dönüştürülür.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-function.htmlspecialchars-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   Dönüştürülen dizge.
  </p>
  <p class="para">
   Belirtilen <code class="parameter">kodlama</code> altında belirtilen
   <code class="parameter">dizge</code> geçersiz bir kod dizilimi içeriyorsa,
   <strong><code><a href="string.constants.php#constant.ent-ignore">ENT_IGNORE</a></code></strong> veya <strong><code><a href="string.constants.php#constant.ent-substitute">ENT_SUBSTITUTE</a></code></strong>
   seçenekleri atanmadığı takdirde boş dizge döndürülür.
   </p>
 </div>


 <div class="refsect1 changelog" id="refsect1-function.htmlspecialchars-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.1.0</td>
      <td>
       <code class="parameter">seçenekler</code> bağımsız değişkeninin öntanımlı değeri
       <strong><code><a href="string.constants.php#constant.ent-compat">ENT_COMPAT</a></code></strong> iken <strong><code><a href="string.constants.php#constant.ent-quotes">ENT_QUOTES</a></code></strong> |
       <strong><code><a href="string.constants.php#constant.ent-substitute">ENT_SUBSTITUTE</a></code></strong> | <strong><code><a href="string.constants.php#constant.ent-html401">ENT_HTML401</a></code></strong>
        oldu.
      </td>
     </tr>

    </tbody>
   
  </table>

 </div>


 <div class="refsect1 examples" id="refsect1-function.htmlspecialchars-examples">
  <h3 class="title">Örnekler</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Örnek 1 - <span class="function"><strong>htmlspecialchars()</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 />$yenisi </span><span style="color: #007700">= </span><span style="color: #0000BB">htmlspecialchars</span><span style="color: #007700">(</span><span style="color: #DD0000">"&lt;a href='dnm'&gt;Deneme&lt;/a&gt;"</span><span style="color: #007700">, </span><span style="color: #0000BB">ENT_QUOTES</span><span style="color: #007700">);<br />echo </span><span style="color: #0000BB">$yenisi</span><span style="color: #007700">; </span><span style="color: #FF8000">// &amp;lt;a href=&amp;#039;dnm&amp;#039;&amp;gt;Deneme&amp;lt;/a&amp;gt;<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

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


 <div class="refsect1 notes" id="refsect1-function.htmlspecialchars-notes">
  <h3 class="title">Notlar</h3>
  <blockquote class="note"><p><strong class="note">Bilginize</strong>: 
   <p class="para">
    Bu işlev yukarıda listelenenler dışında hiçbir şeyi dönüştürmez. Tam bir
    dönüşüm istiyorsanız <span class="function"><a href="function.htmlentities.php" class="function">htmlentities()</a></span> işlevine bakınız.
   </p>
  </p></blockquote>
  <blockquote class="note"><p><strong class="note">Bilginize</strong>: 
   <p class="para">
    Tutarsız <code class="parameter">seçenekler</code> durumunda,
    şu kurallar uygulanır:
   </p>
   <p class="para">
    <ul class="itemizedlist">
     <li class="listitem">
      <span class="simpara">
       <strong><code><a href="string.constants.php#constant.ent-compat">ENT_COMPAT</a></code></strong>, <strong><code><a href="string.constants.php#constant.ent-quotes">ENT_QUOTES</a></code></strong>,
       <strong><code><a href="string.constants.php#constant.ent-noquotes">ENT_NOQUOTES</a></code></strong> seçeneklerinden hiçbiri mevcut
       değilse, <strong><code><a href="string.constants.php#constant.ent-noquotes">ENT_NOQUOTES</a></code></strong> öntanımlıdır.
      </span>
     </li>
     <li class="listitem">
      <span class="simpara">
       <strong><code><a href="string.constants.php#constant.ent-compat">ENT_COMPAT</a></code></strong>, <strong><code><a href="string.constants.php#constant.ent-quotes">ENT_QUOTES</a></code></strong>,
       <strong><code><a href="string.constants.php#constant.ent-noquotes">ENT_NOQUOTES</a></code></strong> seçeneklerinden birden fazlası
       mevcutsa, en yüksek önceliği <strong><code><a href="string.constants.php#constant.ent-quotes">ENT_QUOTES</a></code></strong> alır ve
       bunu <strong><code><a href="string.constants.php#constant.ent-compat">ENT_COMPAT</a></code></strong> takip eder.
      </span>
     </li>
     <li class="listitem">
      <span class="simpara">
       <strong><code><a href="string.constants.php#constant.ent-html401">ENT_HTML401</a></code></strong>, <strong><code><a href="string.constants.php#constant.ent-html5">ENT_HTML5</a></code></strong>,
       <strong><code><a href="string.constants.php#constant.ent-xhtml">ENT_XHTML</a></code></strong>, <strong><code><a href="string.constants.php#constant.ent-xml1">ENT_XML1</a></code></strong>
       seçeneklerinden hiçbiri mevcut değilse <strong><code><a href="string.constants.php#constant.ent-html401">ENT_HTML401</a></code></strong>
       öntanımlıdır.
      </span>
     </li>
     <li class="listitem">
      <span class="simpara">
       <strong><code><a href="string.constants.php#constant.ent-html401">ENT_HTML401</a></code></strong>, <strong><code><a href="string.constants.php#constant.ent-html5">ENT_HTML5</a></code></strong>,
       <strong><code><a href="string.constants.php#constant.ent-xhtml">ENT_XHTML</a></code></strong>, <strong><code><a href="string.constants.php#constant.ent-xml1">ENT_XML1</a></code></strong>
       seçeneklerinden birden fazlası mevcutsa, en yüksek önceliği
       <strong><code><a href="string.constants.php#constant.ent-html5">ENT_HTML5</a></code></strong> alır ve bunu
       <strong><code><a href="string.constants.php#constant.ent-xhtml">ENT_XHTML</a></code></strong>, <strong><code><a href="string.constants.php#constant.ent-xml1">ENT_XML1</a></code></strong> ve
       <strong><code><a href="string.constants.php#constant.ent-html401">ENT_HTML401</a></code></strong> takip eder.
      </span>
     </li>
     <li class="listitem">
      <span class="simpara">
       <strong><code><a href="string.constants.php#constant.ent-disallowed">ENT_DISALLOWED</a></code></strong>, <strong><code><a href="string.constants.php#constant.ent-ignore">ENT_IGNORE</a></code></strong>,
       <strong><code><a href="string.constants.php#constant.ent-substitute">ENT_SUBSTITUTE</a></code></strong>seçeneklerinden birden fazlası
       mevcutsa, en yüksek önceliği <strong><code><a href="string.constants.php#constant.ent-ignore">ENT_IGNORE</a></code></strong> alır ve
       bunu <strong><code><a href="string.constants.php#constant.ent-substitute">ENT_SUBSTITUTE</a></code></strong> takip eder.
      </span>
     </li>
    </ul>
   </p>
  </p></blockquote>
 </div>


 <div class="refsect1 seealso" id="refsect1-function.htmlspecialchars-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="function"><a href="function.get-html-translation-table.php" class="function" rel="rdfs-seeAlso">get_html_translation_table()</a> - htmlspecialchars ve
  htmlentities tarafından kullanılan d&ouml;n&uuml;ş&uuml;m tablosunu
  d&ouml;nd&uuml;r&uuml;r</span></li>
    <li><span class="function"><a href="function.htmlspecialchars-decode.php" class="function" rel="rdfs-seeAlso">htmlspecialchars_decode()</a> - &Ouml;zel HTML &ouml;ğelerini gerisin geriye karakterlere d&ouml;n&uuml;şt&uuml;r&uuml;r</span></li>
    <li><span class="function"><a href="function.strip-tags.php" class="function" rel="rdfs-seeAlso">strip_tags()</a> - Bir dizgeden HTML ve PHP etiketlerini ayıklar</span></li>
    <li><span class="function"><a href="function.htmlentities.php" class="function" rel="rdfs-seeAlso">htmlentities()</a> - D&ouml;n&uuml;şt&uuml;r&uuml;lebilecek t&uuml;m karakterleri HTML &ouml;ğeleri haline getirir</span></li>
    <li><span class="function"><a href="function.nl2br.php" class="function" rel="rdfs-seeAlso">nl2br()</a> - Dizgedeki t&uuml;m satırsonlarının yerine HTML satır katlayıcıları
  yerleştirilir</span></li>
   </ul>
  </p>
 </div>


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