Example Text: This will be stored in the $_POST['x'] variable
This is sentence one.
This is sentence two.
This is sentence three.
如果我在下面运行此代码,它将返回一个只有一个元素的数组
$x= mysqli_real_escape_string($db, $_POST['x']);
$y= preg_split("/(\r\n|\n|\r)/", $x);
但是,如果我在下面运行此代码,它将正确地将其拆分为所有 3 个元素。
$x = $_POST['x'];
$y= preg_split("/(\r\n|\n|\r)/", $x);
有没有其他人经历过这种现象?为什么会这样?