x
 
<!DOCTYPE html>
<html>
<body>
<?php
$x = "Hello World!";
$y = explode(" ", $x);
//使用 print_r() 函数显示结果:
print_r($y);
?> 
</body>
</html>