我有一页带有 textarea 的内容保存到数据库中。
内容如下所示:
before
--------------
after
现在我需要将文本拆分为“之前”和“之后” - 没有任何换行符。
所以我的问题是:
EOL 字符取决于什么?
a) 在平台上用户正在运行
b) 在 PHP 服务器的平台上
c) 在 DB 服务器的平台上
有没有更好的跨平台解决方案?
$string_exploded = explode( "\n". $delimiter. "\n", $string );
if( count($string_exploded) === 1 )
{
$string_exploded = explode( "\r\n". $delimiter. "\r\n", $string );
}
谢谢大家的回答