3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Currency { public $currencyCode; public function __construct($currencyCode) { $this->currencyCode = $currencyCode; } public function equals(Currency $currency) { return $this->currencyCode === $currency->currencyCode; } } class Money { public $amount; public $currency; public function __construct($amount, Currency $currency = null) { $this->currency = $currency ?: new Currency('USD'); } } $revenue = new Money(55, new Currency('GBP')); var_dump($revenue->currency->equals(new Currency('GBP'))); $assets = new Money(55); var_dump($assets->currency->equals(new Currency('USD')));
Output for git.master, git.master_jit, rfc.property-hooks
bool(true) bool(true)

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