<?php
// treat this string as an array
$str = 'Hello';
// the result array
$arr = array();
// incrementor
$i = 3;
$j = 0;
// loop
for ($i, $j; $j < strlen($str); $i++, $j++)
{
$arr[$i] = $str[$j];
}
// show result
echo '<pre>';
print_r($arr);
?>
.hth