3v4l.org

run code in 300+ PHP versions simultaneously
<?php class BugReportMailrcConfigTests { /** @var string */ private $s1 = <<<STRING I'm a string :( STRING; /** @var string */ private $s2 = <<<'STRING' I'm a string :) STRING; /** @var string */ private $s3 = 'I\'m a string :)'; } $ref = new \ReflectionClass(BugReportMailrcConfigTests::class); $s1 = $ref->getProperty('s1'); var_dump($s1->getDocComment()); $s2 = $ref->getProperty('s2'); var_dump($s2->getDocComment()); $s3 = $ref->getProperty('s3'); var_dump($s2->getDocComment());
Output for git.master, git.master_jit, rfc.property-hooks
string(18) "/** @var string */" string(18) "/** @var string */" string(18) "/** @var string */"

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:
60.04 ms | 401 KiB | 8 Q