<?php $a = (new class { public function main($name) { return "Hello, " . $name; } })->main('Andi'); echo $a;