我有一个看起来像这样的字符串:[something ="1,2,3"]
我需要将引号之间的所有内容都放入一个字符串中。我确定 preg_match 是这样做的方法,但我不确定要使用的表达式。
$content = [something = "1,2,3"];
$new_string = preg_match('?regex?','$content');
我有一个看起来像这样的字符串:[something ="1,2,3"]
我需要将引号之间的所有内容都放入一个字符串中。我确定 preg_match 是这样做的方法,但我不确定要使用的表达式。
$content = [something = "1,2,3"];
$new_string = preg_match('?regex?','$content');