3v4l.org

run code in 300+ PHP versions simultaneously
<?php abstract class messageDetail { abstract function filter($msg); } class setmessage extends messageDetail { public function filter($msg) { return $msg; } } class messageHandle extends messageDetail { public $message; public $obj; public function __construct($obj) { $this -> obj = $obj; } public function filter($msg) { $this -> message = $msg; } } class htmlFilter extends messageHandle { public function filter($msg) { parent::filter($msg); return 'html过滤'. $this->$obj->filter($msg); } } class ensitiveFilter extends messageHandle { public function filter($msg) { parent::filter($msg); return '敏感词汇过滤'.$this->message; } } $obj = new htmlFilter(new ensitiveFilter(new setmessage())); echo $obj -> filter('测试一下');
Output for git.master, git.master_jit, rfc.property-hooks
Warning: Undefined variable $obj in /in/GEn5n on line 35 Warning: Undefined property: htmlFilter::$ in /in/GEn5n on line 35 Fatal error: Uncaught Error: Call to a member function filter() on null in /in/GEn5n:35 Stack trace: #0 /in/GEn5n(49): htmlFilter->filter('\xE6\xB5\x8B\xE8\xAF\x95\xE4\xB8\x80\xE4\xB8\x8B') #1 {main} thrown in /in/GEn5n on line 35
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:
37.5 ms | 401 KiB | 8 Q