运行 ❯
获取你的
自己的 PHP
服务器
×
更改方向
更改主题,深色/浅色
前往 Spaces
<!DOCTYPE html> <html> <body> <?php $str = "Hello world. It's a beautiful day."; print_r (explode(" ",$str)); ?> </body> </html>
数组 ( [0] => Hello [1] => world. [2] => It's [3] => a [4] => beautiful [5] => day. )