<?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.getstaticpropertyvalue.php',
    1 => 'ReflectionClass::getStaticPropertyValue',
    2 => 'Duruk &ouml;zelliğin değerini d&ouml;nd&uuml;r&uuml;r',
  ),
  'up' => 
  array (
    0 => 'class.reflectionclass.php',
    1 => 'ReflectionClass',
  ),
  'prev' => 
  array (
    0 => 'reflectionclass.getstaticproperties.php',
    1 => 'ReflectionClass::getStaticProperties',
  ),
  'next' => 
  array (
    0 => 'reflectionclass.gettraitaliases.php',
    1 => 'ReflectionClass::getTraitAliases',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'tr',
    'path' => 'reference/reflection/reflectionclass/getstaticpropertyvalue.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="reflectionclass.getstaticpropertyvalue" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ReflectionClass::getStaticPropertyValue</h1>
  <p class="verinfo">(PHP 5 &gt;= 5.1.2, PHP 7, PHP 8)</p><p class="refpurpose"><span class="refname">ReflectionClass::getStaticPropertyValue</span> &mdash; <span class="dc-title">Duruk özelliğin değerini döndürür</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-reflectionclass.getstaticpropertyvalue-description">
  <h3 class="title">Açıklama</h3>
<div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>ReflectionClass::getStaticPropertyValue</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.string.php" class="type string">string</a></span> <code class="parameter">$isim</code></span>, <span class="methodparam"><span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span> <code class="parameter reference">&$öntanımlı</code><span class="initializer"> = ?</span></span>): <span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span></div>

  <p class="para rdfs-comment">
   Sınıfın statik özelliğinin değerini döndürür.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-reflectionclass.getstaticpropertyvalue-parameters">
  <h3 class="title">Bağımsız Değişkenler</h3>
  <p class="para">
   <dl>
    
     <dt><code class="parameter">isim</code></dt>
     <dd>
      <p class="para">
       Değeri döndürülecek statik özelliğin ismi.
      </p>
     </dd>
    
    
     <dt><code class="parameter">öntanımlı</code></dt>
     <dd>
      <p class="para">
       Sınıf içinde <code class="parameter">isim</code> adında statik bir özellik
       bildirilmediği durumda dönecek öntanımlı değer. Eğer özellik mevcut
       değilse ve bu bağımsız değişken de atlanmışsa bir
       <span class="classname"><a href="class.reflectionexception.php" class="classname">ReflectionException</a></span> yavrulanır.
      </p>
     </dd>
    
   </dl>
  </p>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-reflectionclass.getstaticpropertyvalue-returnvalues">
  <h3 class="title">Dönen Değerler</h3>
  <p class="para">
   Statik özelliğin değeri.
  </p>
 </div>


 <div class="refsect1 examples" id="refsect1-reflectionclass.getstaticpropertyvalue-examples">
  <h3 class="title">Örnekler</h3>
  <p class="para">
   <div class="example" id="example-1">
    <p><strong>Örnek 1 - <span class="methodname"><strong>ReflectionClass::getStaticPropertyValue()</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 static </span><span style="color: #0000BB">$color </span><span style="color: #007700">= </span><span style="color: #DD0000">'Red'</span><span style="color: #007700">;<br />}<br /><br /></span><span style="color: #0000BB">$class </span><span style="color: #007700">= new </span><span style="color: #0000BB">ReflectionClass</span><span style="color: #007700">(</span><span style="color: #DD0000">'Apple'</span><span style="color: #007700">);<br /></span><span style="color: #0000BB">var_dump</span><span style="color: #007700">(</span><span style="color: #0000BB">$class</span><span style="color: #007700">-&gt;</span><span style="color: #0000BB">getStaticPropertyValue</span><span style="color: #007700">(</span><span style="color: #DD0000">'color'</span><span style="color: #007700">));<br /></span><span style="color: #0000BB">?&gt;</span></span></code></div>
    </div>

    <div class="example-contents"><p>
Yukarıdaki örneğin çıktısı:</p></div>
    <div class="example-contents screen">
<div class="examplescode"><pre class="examplescode">string(3) &quot;Red&quot;</pre>
</div>
    </div>
   </div>
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-reflectionclass.getstaticpropertyvalue-seealso">
  <h3 class="title">Ayrıca Bakınız</h3>
  <p class="para">
   <ul class="simplelist">
    <li><span class="methodname"><a href="reflectionclass.getstaticproperties.php" class="methodname" rel="rdfs-seeAlso">ReflectionClass::getStaticProperties()</a> - Duruk &ouml;zellikleri d&ouml;nd&uuml;r&uuml;r</span></li>
    <li><span class="methodname"><a href="reflectionclass.setstaticpropertyvalue.php" class="methodname" rel="rdfs-seeAlso">ReflectionClass::setStaticPropertyValue()</a> - Statik &ouml;zelliğe değer atar</span></li>
   </ul>
  </p>
 </div>


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