我想在PHP中用大写字母分隔一个单词
例如:
$string = "facebookPageUrl";
我希望这样:
$array = array("facebook", "Page", "Url");
我该怎么办?我想要最短,最有效的方式.
php
php ×1