weird question. But I need to explode a string by uppercase letters. So if I had:
$uc = 'UpperCase';
///Would become
print $uc[0] /// 'Upper';
print $uc[1] /// 'Case';
I need it because I'm using mod_rewrite and I can't send URL variables with anything but a continuous word.