php 可以按换行符来分隔数组吗?
程序员文章站
2022-04-15 15:04:41
...
PHP可以用空格来把字符串分隔成数组。
$str = "Hello world. I love php!";
$arr = explode(" ", $str);
怎么按换行符来分隔?