3v4l.org

run code in 300+ PHP versions simultaneously
<?php $title = 'str'; $getView1 = function () use ($title, $viewPath) { return compact(['title']); }; $getView2 = fn () => compact(['title']); var_dump($getView1()); // ['title' => 'str'] var_dump($getView2()); // []

preferences:
26.86 ms | 405 KiB | 5 Q