split vs. explode in php

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

What is the difference between explode and split in php?

4条回答
  •  野性不改
    2021-02-06 22:35

    explode is generally faster than split ; but its not multibyte character safe.

    We will use explode when we are absolutely guaranteed that our input is in single-byte character sets such as ISO-8859-1, and split when we are dealing with user input.

提交回复
热议问题