标签: php arrays post
我输入textarea文本,例如:
22.333.45.16 122.12.65.143 14.14.111.11234 文本
22.333.45.16
122.12.65.143
14.14.111.11234
文本
如何将每一行都带到阵列?有可能吗?
答案 0 :(得分:5)
像这样:
$input = $_POST["nameOfTextarea"]; $lines = explode("\n", $input);
这会将字符串拆分为基于分隔符\n的数组(这是一个换行符)。 Here's the docs for explode().
\n