if(preg_match('/^([0-9]+)([0-9]{2})([0-9]{2})$/',$input,$match)) { print_r($match); }
$int = "1111-22-33"; $num = explode("-", $int); echo $num[0]; // 1111 echo $num[1]; // 22 echo $num[2]; // 33