How to explode a multi-line string?

前端 未结 2 1668
萌比男神i
萌比男神i 2020-12-17 18:29

I have a string that has different values on each line:

$matches=\"value1
value2
value3
value4
value5
\";

I want to explode the whole strin

2条回答
  •  夕颜
    夕颜 (楼主)
    2020-12-17 19:15

    You need to change '\n' to "\n".

    From PHP.net:

    If the string is enclosed in double-quotes ("), PHP will interpret more escape sequences for special characters:

    \n linefeed (LF or 0x0A (10) in ASCII)
    More...

提交回复
热议问题