3v4l.org

run code in 300+ PHP versions simultaneously
<?php interface ConfigValueInterface { public function __toString(); } interface ConfigWriterInterface { public function write(ConfigValueInterface $value); } class WriteManager { protected $writers = []; public function addWriter(ConfigWriterInterface $writer, $value_class) { $this->writers[$value_class] = $writer; } public function write(ConfigValueInterface $value) { $class = get_class($value); if (isset($this->writers[$class])) { $this->writers[$class]->write($value); } } } class BaseConfigValue implements ConfigValueInterface { public $storage_location; public function __toString() { return "derp"; } } class NginxConfigValue extends BaseConfigValue {} class BaseConfigWriter implements ConfigWriterInterface { public function write(ConfigValueInterface $value) { if (!$value instanceof BaseConfigValue) { throw new \RuntimeException('Invalid value type'); } echo "writing to {$value->storage_location}\n"; } } class NginxConfigWriter implements ConfigWriterInterface { public function write(ConfigValueInterface $value) { if (!$value instanceof NginxConfigValue) { throw new \RuntimeException('Invalid value type'); } echo "writing NGINX config to {$value->storage_location}\n"; } } // Mock Value objects $nginx_value = new NginxConfigValue(); $base_value = new BaseConfigValue(); $nginx_value->storage_location = $base_value->storage_location = "/some/path"; // Set up manager $manager = new WriteManager(); $manager->addWriter(BaseConfigWriter::class, BaseConfigValue::class); $manager->addWriter(NginxConfigWriter::class, NginxConfigValue::class); $generator = new ExampleGenerator(); $value = $generator->generate(); $manager->write($value); $generator = new NginxGenerator(); $value = $generator->generate(); $manager->write($value);
Output for git.master, git.master_jit, rfc.property-hooks
Fatal error: Uncaught TypeError: WriteManager::addWriter(): Argument #1 ($writer) must be of type ConfigWriterInterface, string given, called in /in/MvEsG on line 84 and defined in /in/MvEsG:20 Stack trace: #0 /in/MvEsG(84): WriteManager->addWriter('BaseConfigWrite...', 'BaseConfigValue') #1 {main} thrown in /in/MvEsG on line 20
Process exited with code 255.

This tab shows result from various feature-branches currently under review by the php developers. Contact me to have additional branches featured.

Active branches

Archived branches

Once feature-branches are merged or declined, they are no longer available. Their functionality (when merged) can be viewed from the main output page


preferences:
34.25 ms | 401 KiB | 8 Q