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.-]*~', ''));

preferences:
42.18 ms | 402 KiB | 5 Q