3v4l.org

run code in 300+ PHP versions simultaneously
<?php preg_match("#[\w()-]#", 'some text'); // ok preg_match("#[-\w()]#", 'some text'); // ok preg_match("#[\w-()]#", 'some text'); // NOPE! preg_match("#[\w(-)]#", 'some text'); // ok

preferences:
24.67 ms | 404 KiB | 5 Q