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.33, 8.2.0 - 8.2.29, 8.3.0 - 8.3.26, 8.4.1 - 8.4.13
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:
137.2 ms | 408 KiB | 5 Q