Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
嗨,我想将文本中的数据插入数据库,但我想要的是每一行文本都应该在数据库中占据一个新行。例如
一号 二号 三号
这是文本区域的内容,应该插入到表格的三个不同行中。
使用 PHPexplode()在每个换行符处拆分 textarea 的内容。所以像:
explode()
$lines = explode("\n", $textarea_content);
$lines然后将是一个数组。
$lines