3v4l.org

run code in 300+ PHP versions simultaneously
<?php class Dog{ public $numLegs = 4; public $name; public function __construct($name){ $this->name = $name; } public function bark(){ return $this->name.": Woof!"; } public function greet(){ return "Good boy ". $this->name " !"; } } $dog1 = new Dog("Barker"); $dog2 = new Dog("Amigo"); echo $dog1->bark(); ?>
Output for 7.0.0 - 7.0.2
Parse error: syntax error, unexpected '" !"' (T_CONSTANT_ENCAPSED_STRING), expecting ';' in /in/0mKGd on line 14
Process exited with code 255.
Output for 5.5.24 - 5.5.31, 5.6.8 - 5.6.17
Parse error: syntax error, unexpected '" !"' (T_CONSTANT_ENCAPSED_STRING) in /in/0mKGd on line 14
Process exited with code 255.

preferences:
169.73 ms | 1395 KiB | 28 Q