What is the correct syntax for splitting a string at spaces in PHP?

When splitting a string at spaces in PHP, you can use the `explode()` function. This function takes two parameters: the delimiter (in this case, a space ' ') and the string to be split. It returns an array of substrings.

$string = "Hello World";
$words = explode(" ", $string);
print_r($words);