$str = Hello world!”;运行时:
print_r (爆炸( ”,$str));
Array
(
[0] =>你好
[1] =>world
[2] => !
)
explode(separator,string,limit)
$str = '橙色、蓝色、绿色、红色';运行时:
// 限制 0
print_r(explode(',',$str,0));
// 0
print_r(explode(',',$str,2))的上限);
// 下限为 0
print_r(explode(',',$str,-1));
Array
(
[0] => 橙色、蓝色、绿色、红色
)
Array
(
[0] => orange
[1] => 蓝色, 绿色、红色
)
Array
(
[0] => orange
[1] => blue
[2] => green
)
Please disable your ad blocker and refresh the window to use this website.