3v4l.org

run code in 300+ PHP versions simultaneously
<?php $data = <<<DATA locgrouparray[i++] = new locgroup("E0.090 (33)", "E0.090 (33)", "#SPLUS6ECDBE", "MET"); locgrouparray[i++] = new locgroup("E0.092 (28)", "E0.092 (28)", "#SPLUS6ECDBF", "(none)"); locgrouparray[i++] = new locgroup("E0.111 (30)", "E0.111 (30)", "#SPLUS6ECDC0", "(none)"); locgrouparray[i++] = new locgroup("E0.113 (30)", "E0.113 (30)", "#SPLUS6ECDC1", "(none)"); DATA; preg_match_all('/new locgroup\("(?<Class>[^"]+)", "[^"]+", "(?<ClassId>[^"]+)", "(?<type>[^"]+)"\)/', $data, $matches, PREG_SET_ORDER); $parsedData = array_map(function (array $row) { return array_intersect_key($row, array_flip(array('Class', 'ClassId', 'type'))); }, $matches); var_dump($parsedData);
Output for 5.3.0 - 5.3.29, 5.4.0 - 5.4.45, 5.5.0 - 5.5.36, 5.6.0 - 5.6.28, 7.0.0 - 7.0.20, 7.1.0 - 7.1.33, 7.2.0 - 7.2.33, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.28, 8.2.0 - 8.2.18, 8.3.0 - 8.3.6
array(4) { [0]=> array(3) { ["Class"]=> string(11) "E0.090 (33)" ["ClassId"]=> string(12) "#SPLUS6ECDBE" ["type"]=> string(3) "MET" } [1]=> array(3) { ["Class"]=> string(11) "E0.092 (28)" ["ClassId"]=> string(12) "#SPLUS6ECDBF" ["type"]=> string(6) "(none)" } [2]=> array(3) { ["Class"]=> string(11) "E0.111 (30)" ["ClassId"]=> string(12) "#SPLUS6ECDC0" ["type"]=> string(6) "(none)" } [3]=> array(3) { ["Class"]=> string(11) "E0.113 (30)" ["ClassId"]=> string(12) "#SPLUS6ECDC1" ["type"]=> string(6) "(none)" } }
Output for 4.4.3 - 4.4.9, 5.1.0 - 5.1.1, 5.1.3 - 5.1.6, 5.2.0 - 5.2.17
Parse error: syntax error, unexpected T_FUNCTION, expecting ')' in /in/ZMtqk on line 11
Process exited with code 255.
Output for 4.4.2, 5.1.2
Parse error: syntax error, unexpected T_FUNCTION, expecting ')' in /in/ZMtqk on line 12
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, 5.0.0 - 5.0.5
Parse error: parse error, unexpected T_FUNCTION, expecting ')' in /in/ZMtqk on line 11
Process exited with code 255.
Output for 4.3.2 - 4.3.4
Parse error: parse error, expecting `')'' in /in/ZMtqk on line 11
Process exited with code 255.

preferences:
292.48 ms | 401 KiB | 375 Q