3v4l.org

run code in 300+ PHP versions simultaneously
<?php function renderTemplate($templateText, array $data, $allRequired = false) { return preg_replace_callback(self::VARIABLE_FORMAT, function ($match) use ($data, $allRequired) { $original = $match[0]; $name = $match['name']; $value = data_get($data, $name, function () use ($allRequired, $name, $original) { if ($allRequired) { throw new TemplateDataNotSetException("Template data '$name' not set and could not be resolved"); } else { return $original; } }); return (string) $value; }, $templateText); } renderTemplate('Podmínky Smlouvy o půjčku Výchozí text smlouvy. Jméno: {client.firstname} Příjmení: {client.lastname}', ['client' => ['firstname' => 'aaaaaaaaa']]);
Output for 5.4.0 - 5.4.39
Fatal error: Cannot access self:: when no class scope is active in /in/snTcS on line 4
Process exited with code 255.
Output for 5.3.0 - 5.3.29
Parse error: syntax error, unexpected '[' in /in/snTcS on line 23
Process exited with code 255.
Output for 5.1.0 - 5.1.6, 5.2.0 - 5.2.17
Parse error: syntax error, unexpected T_FUNCTION in /in/snTcS on line 4
Process exited with code 255.
Output for 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_ARRAY, expecting '&' or T_VARIABLE in /in/snTcS on line 2
Process exited with code 255.
Output for 4.4.2 - 4.4.9
Parse error: syntax error, unexpected T_ARRAY, expecting '&' or T_VARIABLE or T_CONST in /in/snTcS on line 2
Process exited with code 255.
Output for 4.3.0 - 4.3.1, 4.3.5 - 4.3.11, 4.4.0 - 4.4.1
Parse error: parse error, unexpected T_ARRAY, expecting '&' or T_VARIABLE or T_CONST in /in/snTcS on line 2
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `'&'' or `T_VARIABLE' or `T_CONST' in /in/snTcS on line 2
Process exited with code 255.

preferences:
211.21 ms | 1395 KiB | 129 Q