获取一些 $_POST 文本输入数据的最简单方法是:
Array
(
[0] => string() "The Black Keys - Gold On the Ceiling
Angeline - Blackout
Allele - Closure
etc"
)
并把它变成这样:
Array
(
[0] => string() 'artist:"The Black Keys" track:"Gold On the Ceiling"'
[1] => string() 'artist:"Angeline" track"Blackout"'
[2] => string() 'artist:"Allele" track"Closure"'
etc
)