I think I found a bug with setValue from ReflectionPropertyHow to create a new object instance from a TypeDeleting an element from an array in PHPPHP Object Extension QuestionHow to read the value of a private field from a different class in Java?Get property value from string using reflection in C#How do I get a YouTube video thumbnail from the YouTube API?Returning JSON from a PHP ScriptRemove the last character from stringFacebook access token “You are using an incompatible web browser” with phpHow do I pass variables and data from PHP to JavaScript?

Exam design: give maximum score per question or not?

Why 1.5fill is 0pt

Does household ovens ventilate heat to the outdoors?

Impossible Scrabble Words

Why is it called a stateful and a stateless firewall?

Amortized Loans seem to benefit the bank more than the customer

Hobby function generators

Which version of the Pigeonhole principle is correct? One is far stronger than the other

Writing a system of Linear Equations

If a PC's ability score increases due to an item, does it increase the corresponding modifier for the ability score or any skills/attacks?

Wouldn't Kreacher have been able to escape even without following an order?

Does Forgotten Realms setting count as “High magic”?

Delete empty subfolders, keep parent folder

How to generate short fixed length cryptographic hashes?

Is there a theorem in Real analysis similar to Cauchy's theorem in Complex analysis?

Talk about Grandpa's weird talk: Who are these folks?

Neta Revai is achzareyos?

Tips for remembering the order of parameters for ln?

Why don't airports use arresting gears to recover energy from landing passenger planes?

Madrid to London w/ Expired 90/180 days stay as US citizen

Why cannot a convert make certain statements? I feel they are being pushed away at the same time respect is being given to them

How to install Rasbian Stretch on Raspberry Pi 4?

Why would short-haul flights be pressurised at a higher cabin pressure?

Rare Earth Elements in the outer solar system



I think I found a bug with setValue from ReflectionProperty


How to create a new object instance from a TypeDeleting an element from an array in PHPPHP Object Extension QuestionHow to read the value of a private field from a different class in Java?Get property value from string using reflection in C#How do I get a YouTube video thumbnail from the YouTube API?Returning JSON from a PHP ScriptRemove the last character from stringFacebook access token “You are using an incompatible web browser” with phpHow do I pass variables and data from PHP to JavaScript?






.everyoneloves__top-leaderboard:empty,.everyoneloves__mid-leaderboard:empty,.everyoneloves__bot-mid-leaderboard:empty margin-bottom:0;








1















I'm working on a function to recursively remove arrays and objects recursively. The problem is that certain recursions may be inside private properties of objects.



below is what I tried as well as the entries I tried to use.



this is my entrie



class TestOBJ

private $fooClosure = null;
public $bar = 5;
private $myPrivateRecursion = null;
private $aimArrayAndContainsRecursion = [];

public function __construct()

$this->fooClosure = function()
echo 'pretty closure';
;


public function setMyPrivateRecursion(&$obj)
$this->myPrivateRecursion = &$obj;


public function setObjInsideArray(&$obj)
$this->aimArrayAndContainsRecursion[] = &$obj;



$std = new stdClass();
$std->std = 'any str';
$std->obj = new stdClass();
$std->obj->other = &$std;

$obj = new TestOBJ();
$obj->bar = new TestOBJ();
$obj->bar->bar = 'hey brow, please works';
$obj->bar->setMyPrivateRecursion($std);


my entrie is var $obj



and this is my function / solution



function makeRecursionStack($vector, &$stack = [], $from = null)

if ($vector)
if (is_object($vector) && !in_array($vector, $stack, true) && !is_callable($vector))
$stack[] = &$vector;
if (get_class($vector) === 'stdClass')
foreach ($vector as $key => $value)
if (in_array($vector->$key, $stack, true))
$vector->$key = null;
else
$vector->$key = $this->makeRecursionStack($vector->$key, $stack, $key);


return $vector;
else
$object = new ReflectionObject($vector);
$reflection = new ReflectionClass($vector);
$properties = $reflection->getProperties();
if ($properties)
foreach ($properties as $property)
$property = $object->getProperty($property->getName());
$property->setAccessible(true);
if (!is_callable($property->getValue($vector)))
$private = false;
if ($property->isPrivate())
$property->setAccessible(true);
$private = true;


if (in_array($property->getValue($vector), $stack, true))
$property->setValue($vector, null);
else
//if($property->getName() === 'myPrivateRecursion' && $from === 'bar')
//$get = $property->getValue($vector);
//$set = $this->makeRecursionStack($get, $stack, $property->getName());
//$property->setValue($vector, $set);
//pre_clear_buffer_die($property->getValue($vector));
//
$property->setValue($vector, $this->makeRecursionStack($property->getValue($vector), $stack, $property->getName()));


if ($private)
$property->setAccessible(false);




return $vector;

else if (is_array($vector))
$nvector = [];
foreach ($vector as $key => $value)
$nvector[$key] = $this->makeRecursionStack($value, $stack, $key);

return $nvector;
else
if (is_object($vector) && !is_callable($vector))
return null;



return $vector;



The place where I have comments is where I noticed the problem. if the If is not commented there $get would receive a stdClass that has recursion and this works perfectly and $set would receive the stdClass without recursion. In that order.



$get =



$set =



After this lines



$property->setValue($vector, $set);
pre_clear_buffer_die($property->getValue($vector));


i obtain this





I try to put other value like an bool or null inside property and after set the $set but it's not works.



P.S: pre_clear_buffer_die kill php buffer, init other buffer and show var inside a <pre> after exit from script. Is an debugger function.










share|improve this question






























    1















    I'm working on a function to recursively remove arrays and objects recursively. The problem is that certain recursions may be inside private properties of objects.



    below is what I tried as well as the entries I tried to use.



    this is my entrie



    class TestOBJ

    private $fooClosure = null;
    public $bar = 5;
    private $myPrivateRecursion = null;
    private $aimArrayAndContainsRecursion = [];

    public function __construct()

    $this->fooClosure = function()
    echo 'pretty closure';
    ;


    public function setMyPrivateRecursion(&$obj)
    $this->myPrivateRecursion = &$obj;


    public function setObjInsideArray(&$obj)
    $this->aimArrayAndContainsRecursion[] = &$obj;



    $std = new stdClass();
    $std->std = 'any str';
    $std->obj = new stdClass();
    $std->obj->other = &$std;

    $obj = new TestOBJ();
    $obj->bar = new TestOBJ();
    $obj->bar->bar = 'hey brow, please works';
    $obj->bar->setMyPrivateRecursion($std);


    my entrie is var $obj



    and this is my function / solution



    function makeRecursionStack($vector, &$stack = [], $from = null)

    if ($vector)
    if (is_object($vector) && !in_array($vector, $stack, true) && !is_callable($vector))
    $stack[] = &$vector;
    if (get_class($vector) === 'stdClass')
    foreach ($vector as $key => $value)
    if (in_array($vector->$key, $stack, true))
    $vector->$key = null;
    else
    $vector->$key = $this->makeRecursionStack($vector->$key, $stack, $key);


    return $vector;
    else
    $object = new ReflectionObject($vector);
    $reflection = new ReflectionClass($vector);
    $properties = $reflection->getProperties();
    if ($properties)
    foreach ($properties as $property)
    $property = $object->getProperty($property->getName());
    $property->setAccessible(true);
    if (!is_callable($property->getValue($vector)))
    $private = false;
    if ($property->isPrivate())
    $property->setAccessible(true);
    $private = true;


    if (in_array($property->getValue($vector), $stack, true))
    $property->setValue($vector, null);
    else
    //if($property->getName() === 'myPrivateRecursion' && $from === 'bar')
    //$get = $property->getValue($vector);
    //$set = $this->makeRecursionStack($get, $stack, $property->getName());
    //$property->setValue($vector, $set);
    //pre_clear_buffer_die($property->getValue($vector));
    //
    $property->setValue($vector, $this->makeRecursionStack($property->getValue($vector), $stack, $property->getName()));


    if ($private)
    $property->setAccessible(false);




    return $vector;

    else if (is_array($vector))
    $nvector = [];
    foreach ($vector as $key => $value)
    $nvector[$key] = $this->makeRecursionStack($value, $stack, $key);

    return $nvector;
    else
    if (is_object($vector) && !is_callable($vector))
    return null;



    return $vector;



    The place where I have comments is where I noticed the problem. if the If is not commented there $get would receive a stdClass that has recursion and this works perfectly and $set would receive the stdClass without recursion. In that order.



    $get =



    $set =



    After this lines



    $property->setValue($vector, $set);
    pre_clear_buffer_die($property->getValue($vector));


    i obtain this





    I try to put other value like an bool or null inside property and after set the $set but it's not works.



    P.S: pre_clear_buffer_die kill php buffer, init other buffer and show var inside a <pre> after exit from script. Is an debugger function.










    share|improve this question


























      1












      1








      1








      I'm working on a function to recursively remove arrays and objects recursively. The problem is that certain recursions may be inside private properties of objects.



      below is what I tried as well as the entries I tried to use.



      this is my entrie



      class TestOBJ

      private $fooClosure = null;
      public $bar = 5;
      private $myPrivateRecursion = null;
      private $aimArrayAndContainsRecursion = [];

      public function __construct()

      $this->fooClosure = function()
      echo 'pretty closure';
      ;


      public function setMyPrivateRecursion(&$obj)
      $this->myPrivateRecursion = &$obj;


      public function setObjInsideArray(&$obj)
      $this->aimArrayAndContainsRecursion[] = &$obj;



      $std = new stdClass();
      $std->std = 'any str';
      $std->obj = new stdClass();
      $std->obj->other = &$std;

      $obj = new TestOBJ();
      $obj->bar = new TestOBJ();
      $obj->bar->bar = 'hey brow, please works';
      $obj->bar->setMyPrivateRecursion($std);


      my entrie is var $obj



      and this is my function / solution



      function makeRecursionStack($vector, &$stack = [], $from = null)

      if ($vector)
      if (is_object($vector) && !in_array($vector, $stack, true) && !is_callable($vector))
      $stack[] = &$vector;
      if (get_class($vector) === 'stdClass')
      foreach ($vector as $key => $value)
      if (in_array($vector->$key, $stack, true))
      $vector->$key = null;
      else
      $vector->$key = $this->makeRecursionStack($vector->$key, $stack, $key);


      return $vector;
      else
      $object = new ReflectionObject($vector);
      $reflection = new ReflectionClass($vector);
      $properties = $reflection->getProperties();
      if ($properties)
      foreach ($properties as $property)
      $property = $object->getProperty($property->getName());
      $property->setAccessible(true);
      if (!is_callable($property->getValue($vector)))
      $private = false;
      if ($property->isPrivate())
      $property->setAccessible(true);
      $private = true;


      if (in_array($property->getValue($vector), $stack, true))
      $property->setValue($vector, null);
      else
      //if($property->getName() === 'myPrivateRecursion' && $from === 'bar')
      //$get = $property->getValue($vector);
      //$set = $this->makeRecursionStack($get, $stack, $property->getName());
      //$property->setValue($vector, $set);
      //pre_clear_buffer_die($property->getValue($vector));
      //
      $property->setValue($vector, $this->makeRecursionStack($property->getValue($vector), $stack, $property->getName()));


      if ($private)
      $property->setAccessible(false);




      return $vector;

      else if (is_array($vector))
      $nvector = [];
      foreach ($vector as $key => $value)
      $nvector[$key] = $this->makeRecursionStack($value, $stack, $key);

      return $nvector;
      else
      if (is_object($vector) && !is_callable($vector))
      return null;



      return $vector;



      The place where I have comments is where I noticed the problem. if the If is not commented there $get would receive a stdClass that has recursion and this works perfectly and $set would receive the stdClass without recursion. In that order.



      $get =



      $set =



      After this lines



      $property->setValue($vector, $set);
      pre_clear_buffer_die($property->getValue($vector));


      i obtain this





      I try to put other value like an bool or null inside property and after set the $set but it's not works.



      P.S: pre_clear_buffer_die kill php buffer, init other buffer and show var inside a <pre> after exit from script. Is an debugger function.










      share|improve this question














      I'm working on a function to recursively remove arrays and objects recursively. The problem is that certain recursions may be inside private properties of objects.



      below is what I tried as well as the entries I tried to use.



      this is my entrie



      class TestOBJ

      private $fooClosure = null;
      public $bar = 5;
      private $myPrivateRecursion = null;
      private $aimArrayAndContainsRecursion = [];

      public function __construct()

      $this->fooClosure = function()
      echo 'pretty closure';
      ;


      public function setMyPrivateRecursion(&$obj)
      $this->myPrivateRecursion = &$obj;


      public function setObjInsideArray(&$obj)
      $this->aimArrayAndContainsRecursion[] = &$obj;



      $std = new stdClass();
      $std->std = 'any str';
      $std->obj = new stdClass();
      $std->obj->other = &$std;

      $obj = new TestOBJ();
      $obj->bar = new TestOBJ();
      $obj->bar->bar = 'hey brow, please works';
      $obj->bar->setMyPrivateRecursion($std);


      my entrie is var $obj



      and this is my function / solution



      function makeRecursionStack($vector, &$stack = [], $from = null)

      if ($vector)
      if (is_object($vector) && !in_array($vector, $stack, true) && !is_callable($vector))
      $stack[] = &$vector;
      if (get_class($vector) === 'stdClass')
      foreach ($vector as $key => $value)
      if (in_array($vector->$key, $stack, true))
      $vector->$key = null;
      else
      $vector->$key = $this->makeRecursionStack($vector->$key, $stack, $key);


      return $vector;
      else
      $object = new ReflectionObject($vector);
      $reflection = new ReflectionClass($vector);
      $properties = $reflection->getProperties();
      if ($properties)
      foreach ($properties as $property)
      $property = $object->getProperty($property->getName());
      $property->setAccessible(true);
      if (!is_callable($property->getValue($vector)))
      $private = false;
      if ($property->isPrivate())
      $property->setAccessible(true);
      $private = true;


      if (in_array($property->getValue($vector), $stack, true))
      $property->setValue($vector, null);
      else
      //if($property->getName() === 'myPrivateRecursion' && $from === 'bar')
      //$get = $property->getValue($vector);
      //$set = $this->makeRecursionStack($get, $stack, $property->getName());
      //$property->setValue($vector, $set);
      //pre_clear_buffer_die($property->getValue($vector));
      //
      $property->setValue($vector, $this->makeRecursionStack($property->getValue($vector), $stack, $property->getName()));


      if ($private)
      $property->setAccessible(false);




      return $vector;

      else if (is_array($vector))
      $nvector = [];
      foreach ($vector as $key => $value)
      $nvector[$key] = $this->makeRecursionStack($value, $stack, $key);

      return $nvector;
      else
      if (is_object($vector) && !is_callable($vector))
      return null;



      return $vector;



      The place where I have comments is where I noticed the problem. if the If is not commented there $get would receive a stdClass that has recursion and this works perfectly and $set would receive the stdClass without recursion. In that order.



      $get =



      $set =



      After this lines



      $property->setValue($vector, $set);
      pre_clear_buffer_die($property->getValue($vector));


      i obtain this





      I try to put other value like an bool or null inside property and after set the $set but it's not works.



      P.S: pre_clear_buffer_die kill php buffer, init other buffer and show var inside a <pre> after exit from script. Is an debugger function.







      php recursion reflection






      share|improve this question













      share|improve this question











      share|improve this question




      share|improve this question










      asked Mar 28 at 12:47









      Matheus PradoMatheus Prado

      357 bronze badges




      357 bronze badges

























          0






          active

          oldest

          votes










          Your Answer






          StackExchange.ifUsing("editor", function ()
          StackExchange.using("externalEditor", function ()
          StackExchange.using("snippets", function ()
          StackExchange.snippets.init();
          );
          );
          , "code-snippets");

          StackExchange.ready(function()
          var channelOptions =
          tags: "".split(" "),
          id: "1"
          ;
          initTagRenderer("".split(" "), "".split(" "), channelOptions);

          StackExchange.using("externalEditor", function()
          // Have to fire editor after snippets, if snippets enabled
          if (StackExchange.settings.snippets.snippetsEnabled)
          StackExchange.using("snippets", function()
          createEditor();
          );

          else
          createEditor();

          );

          function createEditor()
          StackExchange.prepareEditor(
          heartbeatType: 'answer',
          autoActivateHeartbeat: false,
          convertImagesToLinks: true,
          noModals: true,
          showLowRepImageUploadWarning: true,
          reputationToPostImages: 10,
          bindNavPrevention: true,
          postfix: "",
          imageUploader:
          brandingHtml: "Powered by u003ca class="icon-imgur-white" href="https://imgur.com/"u003eu003c/au003e",
          contentPolicyHtml: "User contributions licensed under u003ca href="https://creativecommons.org/licenses/by-sa/4.0/"u003ecc by-sa 4.0 with attribution requiredu003c/au003e u003ca href="https://stackoverflow.com/legal/content-policy"u003e(content policy)u003c/au003e",
          allowUrls: true
          ,
          onDemand: true,
          discardSelector: ".discard-answer"
          ,immediatelyShowMarkdownHelp:true
          );



          );














          draft saved

          draft discarded
















          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55398052%2fi-think-i-found-a-bug-with-setvalue-from-reflectionproperty%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown

























          0






          active

          oldest

          votes








          0






          active

          oldest

          votes









          active

          oldest

          votes






          active

          oldest

          votes




          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.







          Is this question similar to what you get asked at work? Learn more about asking and sharing private information with your coworkers using Stack Overflow for Teams.




















          draft saved

          draft discarded















































          Thanks for contributing an answer to Stack Overflow!


          • Please be sure to answer the question. Provide details and share your research!

          But avoid


          • Asking for help, clarification, or responding to other answers.

          • Making statements based on opinion; back them up with references or personal experience.

          To learn more, see our tips on writing great answers.




          draft saved


          draft discarded














          StackExchange.ready(
          function ()
          StackExchange.openid.initPostLogin('.new-post-login', 'https%3a%2f%2fstackoverflow.com%2fquestions%2f55398052%2fi-think-i-found-a-bug-with-setvalue-from-reflectionproperty%23new-answer', 'question_page');

          );

          Post as a guest















          Required, but never shown





















































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown

































          Required, but never shown














          Required, but never shown












          Required, but never shown







          Required, but never shown







          Popular posts from this blog

          Kamusi Yaliyomo Aina za kamusi | Muundo wa kamusi | Faida za kamusi | Dhima ya picha katika kamusi | Marejeo | Tazama pia | Viungo vya nje | UrambazajiKuhusu kamusiGo-SwahiliWiki-KamusiKamusi ya Kiswahili na Kiingerezakuihariri na kuongeza habari

          SQL error code 1064 with creating Laravel foreign keysForeign key constraints: When to use ON UPDATE and ON DELETEDropping column with foreign key Laravel error: General error: 1025 Error on renameLaravel SQL Can't create tableLaravel Migration foreign key errorLaravel php artisan migrate:refresh giving a syntax errorSQLSTATE[42S01]: Base table or view already exists or Base table or view already exists: 1050 Tableerror in migrating laravel file to xampp serverSyntax error or access violation: 1064:syntax to use near 'unsigned not null, modelName varchar(191) not null, title varchar(191) not nLaravel cannot create new table field in mysqlLaravel 5.7:Last migration creates table but is not registered in the migration table

          은진 송씨 목차 역사 본관 분파 인물 조선 왕실과의 인척 관계 집성촌 항렬자 인구 같이 보기 각주 둘러보기 메뉴은진 송씨세종실록 149권, 지리지 충청도 공주목 은진현