$char = $string{$position}; // where $position is the position of the character you are looking for
$string = "testing"; echo $string{2}; // prints 's'
Δ