mysql数据库中有个字段tags,数值是用逗号分开的,现在要提出来分开显示

2025-03-24 17:46:08
推荐回答(1个)
回答1:

$ret=explode(',',$data);
print_r($ret);