<?php

$re = '~(?<=\G.{2})~'; 
$str = "splitstring"; 
$result = preg_split($re, $str);
print_r($result);