3v4l.org

run code in 300+ PHP versions simultaneously
<?php class WorksIn4And8 { var $int; function __construct($int) { error_log('__construct()'); $this->int = $int; } function WorksIn4And8($int) { error_log('WorksIn4And8()'); $this->__construct($int); } function getInt() { return $this->int; } } $obj = new WorksIn4And8(48); var_dump($obj->getInt());

preferences:
67.2 ms | 405 KiB | 5 Q