Se per convertire in char intendi un array di char sappi che una stringa può essere letta come un array:

Codice PHP:
<?php
$str 
"Hello world";
echo 
$str[6]; // Restituisce il carattere w
?>