<?php
include_once $_SERVER['DOCUMENT_ROOT'] . '/include/shared-manual.inc';
$TOC = array();
$TOC_DEPRECATED = array();
$PARENTS = array();
include_once dirname(__FILE__) ."/toc/class.reflectionproperty.inc";
$setup = array (
  'home' => 
  array (
    0 => 'index.php',
    1 => 'PHP Manual',
  ),
  'head' => 
  array (
    0 => 'UTF-8',
    1 => 'uk',
  ),
  'this' => 
  array (
    0 => 'reflectionproperty.setrawvaluewithoutlazyinitialization.php',
    1 => 'ReflectionProperty::setRawValueWithoutLazyInitialization',
    2 => 'Set raw property value without triggering lazy initialization',
  ),
  'up' => 
  array (
    0 => 'class.reflectionproperty.php',
    1 => 'ReflectionProperty',
  ),
  'prev' => 
  array (
    0 => 'reflectionproperty.setrawvalue.php',
    1 => 'ReflectionProperty::setRawValue',
  ),
  'next' => 
  array (
    0 => 'reflectionproperty.setvalue.php',
    1 => 'ReflectionProperty::setValue',
  ),
  'alternatives' => 
  array (
  ),
  'source' => 
  array (
    'lang' => 'en',
    'path' => 'reference/reflection/reflectionproperty/setrawvaluewithoutlazyinitialization.xml',
  ),
  'history' => 
  array (
  ),
);
$setup["toc"] = $TOC;
$setup["toc_deprecated"] = $TOC_DEPRECATED;
$setup["parents"] = $PARENTS;
manual_setup($setup);

contributors($setup);

?>
<div id="reflectionproperty.setrawvaluewithoutlazyinitialization" class="refentry">
 <div class="refnamediv">
  <h1 class="refname">ReflectionProperty::setRawValueWithoutLazyInitialization</h1>
  <p class="verinfo">(PHP 8 &gt;= 8.4.0)</p><p class="refpurpose"><span class="refname">ReflectionProperty::setRawValueWithoutLazyInitialization</span> &mdash; <span class="dc-title">Set raw property value without triggering lazy initialization</span></p>

 </div>

 <div class="refsect1 description" id="refsect1-reflectionproperty.setrawvaluewithoutlazyinitialization-description">
  <h3 class="title">Опис</h3>
  <div class="methodsynopsis dc-description">
   <span class="modifier">public</span> <span class="methodname"><strong>ReflectionProperty::setRawValueWithoutLazyInitialization</strong></span>(<span class="methodparam"><span class="type"><a href="language.types.object.php" class="type object">object</a></span> <code class="parameter">$object</code></span>, <span class="methodparam"><span class="type"><a href="language.types.mixed.php" class="type mixed">mixed</a></span> <code class="parameter">$value</code></span>): <span class="type"><a href="language.types.void.php" class="type void">void</a></span></div>

  <p class="simpara">
   Sets (changes) the property&#039;s value without triggering lazy initialization
   and without calling hook functions.
   The property is marked as non-lazy and can be accessed afterwards without
   triggering lazy initialization.
   The property must not be dynamic, static, or virtual, and the object must be
   an instance of a user defined class or <span class="classname"><a href="class.stdclass.php" class="classname">stdClass</a></span>.
  </p>
  <p class="simpara">
   If this was the last lazy property, the object is marked as non-lazy and the
   initializer or factory function is detached.
  </p>
 </div>


 <div class="refsect1 parameters" id="refsect1-reflectionproperty.setrawvaluewithoutlazyinitialization-parameters">
  <h3 class="title">Параметри</h3>
  <dl>
   
    <dt><code class="parameter">object</code></dt>
    <dd>
     <span class="simpara">
      The object to change the property on.
     </span>
    </dd>
   
   
    <dt><code class="parameter">value</code></dt>
    <dd>
     <span class="simpara">
      The new value.
     </span>
    </dd>
   
  </dl>
 </div>


 <div class="refsect1 returnvalues" id="refsect1-reflectionproperty.setrawvaluewithoutlazyinitialization-returnvalues">
  <h3 class="title">Значення, що повертаються</h3>
  <p class="simpara">
   Не повертає значень.
  </p>
 </div>


 <div class="refsect1 seealso" id="refsect1-reflectionproperty.setrawvaluewithoutlazyinitialization-seealso">
  <h3 class="title">Прогляньте також</h3>
  <ul class="simplelist">
   <li><a href="language.oop5.lazy-objects.php" class="link">Lazy objects</a></li>
   <li><span class="methodname"><a href="reflectionproperty.skiplazyinitialization.php" class="methodname" rel="rdfs-seeAlso">ReflectionProperty::skipLazyInitialization()</a> - Marks property as non-lazy</span></li>
   <li><span class="methodname"><a href="reflectionclass.newlazyghost.php" class="methodname" rel="rdfs-seeAlso">ReflectionClass::newLazyGhost()</a> - Creates a new lazy ghost instance</span></li>
  </ul>
 </div>


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