$str = "Hello world!";Runtime:
print_r (explode(" ",$str));
Array
(
[0] =>Hello
[1] =>world
[2] => !
)
explode(separator,string,limit)
$str = 'オレンジ、青、緑、赤';Runtime:
// 制限 0
print_r(explode(',',$str,0));
// 0 の上限
print_r(explode(',',$str,2));
// 下限を 0 に
print_r(explode(',',$str,-1));
Array
(
[0] => オレンジ、青、緑、赤
)
Array
(
[0] => orange
[1] => blue, green, red
)
Array
(
[0] => orange
[1] => blue
[2] => green
)
Please disable your ad blocker and refresh the window to use this website.