<?php $myCallback = function () { $result = 'crazy'; // crazy programming return $result; }; $conditions = 'condition_2'; $foo = match ($conditions) { 'condition_1' => 'some text', 'condition_2' => $myCallback() }; var_dump($foo);
You have javascript disabled. You will not be able to edit any code.