<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.reflectionclass.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'tr',
  ),
  'this' => 
  array (
    0 => 'reflectionclass.export.php',
    1 => 'ReflectionClass::export',
    2 => 'Bir sınıf ihra&ccedil; eder',
  ),
  'up' => 
  array (
    0 => 'class.reflectionclass.php',
    1 => 'ReflectionClass',
  ),
  'prev' => 
  array (
    0 => 'reflectionclass.construct.php',
    1 => 'ReflectionClass::__construct',
  ),
  'next' => 
  array (
    0 => 'reflectionclass.getattributes.php',
    1 => 'ReflectionClass::getAttributes',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'tr',
    'path' => 'reference/reflection/reflectionclass/export.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="reflectionclass.export" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ReflectionClass::export</h1>
  <p class="verinfo">(PHP 5, PHP 7)</p><p class="refpurpose"><span class="refname">ReflectionClass::export</span> &mdash; <span class="dc-title">Bir sınıf ihraç eder</span></p>

 </div>

 <div id="reflectionclass.export-refsynopsisdiv">
  <div class="warning"><strong class="warning">Uyarı</strong><p class="simpara">Bu işlevin kullanımı PHP 7.4.0
itibariyle <em>ÖNERİLMEMEKTE</em> olup PHP 8.0.0&#039;da tamamen
<em>KALDIRILMIŞTIR</em>. Bu işleve kesinlikle
güvenilmemelidir.</p></div>
 </div>

 <div class="refsect1 description" id="refsect1-reflectionclass.export-description">
  <h3 class="title">Açıklama</h3>
<div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="modifier">static</span> <span class="methodname"><strong>ReflectionClass::export</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span> <code class="parameter">$bağımsız_değişken</code></span>, <span class="methodparam"><span class="type"><a href="language.types.boolean.php" class="type bool">bool</a></span> <code class="parameter">$return</code><span class="initializer"> = <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong></span></span>): <span class="type"><a href="language.types.string.php" class="type string">string</a></span></div>

  <p class="para rdfs-comment">
   Bir yansıtıcı sınıfı ihraç eder.
  </p>

  <div class="warning"><strong class="warning">Uyarı</strong><p class="simpara">Bu işlev hala
belgelendirilmemiştir; sadece bağımsız değişken listesi
mevcuttur.</p></div>

 </div>


 <div class="refsect1 parameters" id="refsect1-reflectionclass.export-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">bağımsız_değişken</code></dt>
     <dd>
      <p class="para">
       İhraç edilecek
<span class="classname"><a href="class.reflection.php" class="classname">Reflection</a></span>
nesnesi.
      </p>
     </dd>
    
    
     <dt><code class="parameter">return</code></dt>
     <dd>
      <p class="para">
       <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> belirtilirse yansıtmak yerine
ihrac eder. <strong><code><a href="reserved.constants.php#constant.false">false</a></code></strong> olursa (öntanımlıdır) tersini yapar.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-reflectionclass.export-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   <strong><code><a href="reserved.constants.php#constant.true">true</a></code></strong> belirtilirse bir dizge yoksa <strong><code><a href="reserved.constants.php#constant.null">null</a></code></strong>
döner.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-reflectionclass.export-examples">
  <h3 class="title">Örnekler</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Örnek 1 - <span class="methodname"><strong>ReflectionClass::export()</strong></span> temel kullanım örneği</strong></p>
    <div class="example-contents">
<div class="phpcode"><code><span style="color: #000000"><span style="color: #0000BB">&lt;?php<br /></span><span style="color: #007700">class </span><span style="color: #0000BB">Apple </span><span style="color: #007700">{<br />    public </span><span style="color: #0000BB">$var1</span><span style="color: #007700">;<br />    public </span><span style="color: #0000BB">$var2 </span><span style="color: #007700">= </span><span style="color: #DD0000">'Orange'</span><span style="color: #007700">;<br /><br />    public function </span><span style="color: #0000BB">type</span><span style="color: #007700">() {<br />        return </span><span style="color: #DD0000">'Apple'</span><span style="color: #007700">;<br />    }<br />}<br /></span><span style="color: #0000BB">ReflectionClass</span><span style="color: #007700">::</span><span style="color: #0000BB">export</span><span style="color: #007700">(</span><span style="color: #DD0000">'Apple'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>
Yukarıdaki örnek şuna benzer bir çıktı üretir:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">Class [ &lt;user&gt; class Apple ] {
  @@ php shell code 1-8

  - Constants [0] {
  }

  - Static properties [0] {
  }

  - Static methods [0] {
  }

  - Properties [2] {
    Property [ &lt;default&gt; public $var1 ]
    Property [ &lt;default&gt; public $var2 ]
  }

  - Methods [1] {
    Method [ &lt;user&gt; public method type ] {
      @@ php shell code 5 - 7
    }
  }
}</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-reflectionclass.export-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="methodname"><a href="reflectionclass.getname.php" class="methodname" rel="rdfs-seeAlso">ReflectionClass::getName()</a> - Sınıf ismini d&ouml;nd&uuml;r&uuml;r</span></li>
    <li><span class="methodname"><a href="reflectionclass.tostring.php" class="methodname" rel="rdfs-seeAlso">ReflectionClass::__toString()</a> - ReflectionClass nesnesinin dizgesel g&ouml;sterimini d&ouml;nd&uuml;r&uuml;r</span></li>
   </ul>
  </p>
 </div>


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