If for some reason you feel a need to use split(), since "." is an ereg wildcard, you'd need to use of of these:
$tips = split('[.]', $r1);
// ...or...
$tips = split('\.', $r1);
However, I'd opt for the explode() solution, myself, since there's no need for a regex in this case.