在这个例子中 preg_split 中使用的正则表达式是什么?
例子
<?$a='Word with white trailing spaces. ';
输出
Array(
[0] => 'Word ',
[1] => 'with ',
[2] => 'white ',
[3] => 'trailing ',
[3] => 'spaces. '
)
我不知道 php 中的正则表达式。我只需要最小化代码。也许有人可以帮助我并解释一下已回答的正则表达式