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;
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
add a comment
|
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
add a comment
|
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
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
php recursion reflection
asked Mar 28 at 12:47
Matheus PradoMatheus Prado
357 bronze badges
357 bronze badges
add a comment
|
add a comment
|
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
);
);
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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.
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.
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
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
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Post as a guest
Required, but never shown
Sign up or log in
StackExchange.ready(function ()
StackExchange.helpers.onClickDraftSave('#login-link');
);
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
Sign up using Google
Sign up using Facebook
Sign up using Email and Password
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