Home  >  Article  >  Backend Development  >  Can php separate arrays by newlines?

Can php separate arrays by newlines?

WBOY
WBOYOriginal
2016-09-26 08:27:192221browse

PHP can use spaces to separate strings into arrays.

<code class="php">$str = "Hello world. I love php!";  
$arr = explode(" ", $str); </code>

How to separate by newline character?

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn