執行 ❯
獲取您
自己的 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. )