How can a string be converted into an array in PHP?

To convert a string into an array in PHP, you can use the `str_split` function. This function splits a string into an array of characters. You can then access each character in the array individually.

$string = "Hello";
$array = str_split($string);

print_r($array);