-
-
Save TheDistantSea/7e88404bfa6a5fb3ff47 to your computer and use it in GitHub Desktop.
Revisions
-
lastguest revised this gist
Jul 10, 2013 . 1 changed file with 37 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,5 +1,6 @@ <?php // Access a property with no restrictions function stole($object,$property){ $dict = (array)$object; $class = get_class($object); @@ -9,10 +10,45 @@ function stole($object,$property){ $dict["\0$class\0$property"]:null)); } // Modify a property with no restrictions function inject(&$object,$property,$value){ $dict = (array)$object; $class = get_class($object); if (isset($dict["\0$class\0$property"])) { $dict["\0$class\0$property"] = $value; $object = castToClass($dict,$class); } elseif (isset($dict["\0*\0$property"])) { $dict["\0*\0$property"] = $value; $object = castToClass($dict,$class); } elseif (isset($dict[$property])) { $object->$property = $value; } else { return ; } } // Required because we don't know if className has a __set_state defined. function castToClass(array $array,$className) { return unserialize( 'O:'.strlen($className).':"' .$className.'"'.strstr(serialize($array), ':') ); } // Example class Safe { private $content = 'gold'; } $mySafe = new Safe(); // Inject value into a private property inject($mySafe,'content','Magic!'); echo "I've robbed your ",stole($mySafe,'content'),"!"; -
lastguest revised this gist
Jul 10, 2013 . 1 changed file with 3 additions and 4 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,11 +3,10 @@ function stole($object,$property){ $dict = (array)$object; $class = get_class($object); return isset($dict[$property])? $dict[$property]:(isset($dict["\0*\0$property"])? $dict["\0*\0$property"]:(isset($dict["\0$class\0$property"])? $dict["\0$class\0$property"]:null)); } class Safe { -
lastguest created this gist
Jul 10, 2013 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,19 @@ <?php function stole($object,$property){ $dict = (array)$object; $class = get_class($object); $Z = "\0"; return isset($dict[$property])? $dict[$property]:(isset($dict["$Z*$Z$property"])? $dict["$Z*$Z$property"]:(isset($dict["$Z$class$Z$property"])? $dict["$Z$class$Z$property"]:null)); } class Safe { private $content = 'gold'; } $mySafe = new Safe(); echo "I've robbed your ",stole($mySafe,'content'),"!";