3v4l.org

run code in 300+ PHP versions simultaneously
<?php class ClassPrivateAccessor { /** @var \Closure */ private $contexGetter; /** @var \Closure */ private $contexSetter; /** @var \Closure */ private $contextSetterMany; public function __construct() { $this->contextGetter = function($fieldName) { return $this->$fieldName; }; $this->contextSetter = function($fieldName, $newValue) { $this->$fieldName = $newValue; }; $this->contextSetterMany = function(array $values) { foreach ($values as $field => $value) { $this->$field = $value; } }; } public function setContextForGetter($context) { $this->contexGetter = $this->contextGetter->bindTo($context, $context); } public function setContextForSetter($context) { $this->contexSetter = $this->contextSetter->bindTo($context, $context); } public function setContextForSetterMany($context) { $this->contexSetterMany = $this->contextSetterMany->bindTo($context, $context); } public function get($fieldName) { return $this->contexGetter($fieldName); } public function set($fieldName, $newValue) { $this->contexSetter($fieldName, $newValue); } public function setMany($values) { $this->contextSetterMany($values); } } $accessor = new ClassPrivateAccessor(); class Foo { private $test1; private $test2; private $test3; } $foo = new Foo(); $accessor->setContextForSetter($foo); $accessor->set('test1',10);
Output for 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
Deprecated: Creation of dynamic property ClassPrivateAccessor::$contextGetter is deprecated in /in/4bnOH on line 15 Deprecated: Creation of dynamic property ClassPrivateAccessor::$contextSetter is deprecated in /in/4bnOH on line 19 Fatal error: Uncaught Error: Call to undefined method ClassPrivateAccessor::contexSetter() in /in/4bnOH:47 Stack trace: #0 /in/4bnOH(67): ClassPrivateAccessor->set('test1', 10) #1 {main} thrown in /in/4bnOH on line 47
Process exited with code 255.
Output for 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28
Fatal error: Uncaught Error: Call to undefined method ClassPrivateAccessor::contexSetter() in /in/4bnOH:47 Stack trace: #0 /in/4bnOH(67): ClassPrivateAccessor->set('test1', 10) #1 {main} thrown in /in/4bnOH on line 47
Process exited with code 255.
Output for 5.4.0 - 5.4.45, 5.5.0 - 5.5.38, 5.6.0 - 5.6.40
Fatal error: Call to undefined method ClassPrivateAccessor::contexSetter() in /in/4bnOH on line 47
Process exited with code 255.
Output for 5.3.0 - 5.3.29
Fatal error: Call to undefined method Closure::bindTo() in /in/4bnOH on line 35
Process exited with code 255.
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Parse error: syntax error, unexpected T_FUNCTION in /in/4bnOH on line 15
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_FUNCTION in /in/4bnOH on line 15
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/4bnOH on line 6
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_STRING, expecting T_OLD_FUNCTION or T_FUNCTION or T_VAR or '}' in /in/4bnOH on line 6
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `T_OLD_FUNCTION' or `T_FUNCTION' or `T_VAR' or `'}'' in /in/4bnOH on line 6
Process exited with code 255.

preferences:
242.05 ms | 401 KiB | 459 Q