3v4l.org

run code in 300+ PHP versions simultaneously
<?php # The problem, hyphen use within class in incorrect position. var_dump(preg_match('~[0-9\w-.]*~', '')); # The fix, or we escape the hyphen or we put it last var_dump(preg_match('~[0-9\w\-.]*~', '')); var_dump(preg_match('~[0-9\w.-]*~', ''));
Output for 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.7
Warning: preg_match(): Compilation failed: invalid range in character class at offset 6 in /in/tliEE on line 3 bool(false) int(1) int(1)
Output for 7.1.25 - 7.1.28, 7.2.0 - 7.2.33
int(1) int(1) int(1)

preferences:
158.22 ms | 402 KiB | 163 Q