split vs. explode in php

后端 未结 4 1314
一个人的身影
一个人的身影 2021-02-06 22:13

What is the difference between explode and split in php?

4条回答
  •  傲寒
    傲寒 (楼主)
    2021-02-06 22:35

    Both split and explode function splits the string into the array but split is used to split a string using regular expression while explode is used to split a string using another string.

提交回复
热议问题