3v4l.org

run code in 300+ PHP versions simultaneously
<?php getFilename($itemType, $conditions) { arsort($conditions); $fileName = ''; foreach ($conditions as $key => $value) { //TODO: should this be other in case of : and , ? $fileName .= ($fileName != '' ? ',' : '') . $key . ':' . $value; } $fileName = $itemType . '{' . $fileName . '}'; return $fileName; } var_dump(getFilename('test', [ 'test' => 'test', 'monkey' => 'aap' ]));
Output for 7.0.0 - 7.0.1
Parse error: syntax error, unexpected ';' in /in/ZVOeg on line 4
Process exited with code 255.
Output for 5.5.24 - 5.5.30, 5.6.8 - 5.6.16
Parse error: syntax error, unexpected '{' in /in/ZVOeg on line 3
Process exited with code 255.

preferences:
159.65 ms | 1395 KiB | 25 Q