我想使用php从mp3文件中打印艺术家名称作为数组

时间:2015-02-14 05:19:24

标签: php

我在php中有字符串行,这行是

"你好,我的名字,ajay,和我,素食主义者"

我想要php脚本自动存储逗号(,)之后所有单词的新脚本。我不知道该怎么做。请帮帮我。

1 个答案:

答案 0 :(得分:0)

$str = "hello , my , name , ajay , and , i , am , vegetarian";

$Ary = explode(",", $str);

foreach($Ary as $row) {
    $data[] = trim($row);
}
print_r($data);
extract($data);