我在php中有字符串行,这行是
"你好,我的名字,ajay,和我,素食主义者"
我想要php脚本自动存储逗号(,)之后所有单词的新脚本。我不知道该怎么做。请帮帮我。
答案 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);