3v4l.org

run code in 300+ PHP versions simultaneously
<?php $var = "Some Words - Other Words (More Words) Dash-Binded-Word"; var_export(preg_split('~\W{2,}~', $var, null, PREG_SPLIT_NO_EMPTY));
Output for 8.1.0 - 8.1.34, 8.2.0 - 8.2.30, 8.3.0 - 8.3.30, 8.4.1 - 8.4.18, 8.5.0 - 8.5.3
Deprecated: preg_split(): Passing null to parameter #3 ($limit) of type int is deprecated in /in/M3spP on line 5 array ( 0 => 'Some Words', 1 => 'Other Words', 2 => 'More Words', 3 => 'Dash-Binded-Word', )
Output for 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30
array ( 0 => 'Some Words', 1 => 'Other Words', 2 => 'More Words', 3 => 'Dash-Binded-Word', )

preferences:
93.57 ms | 1378 KiB | 4 Q