当前位置:Gxlcms > PHP教程 > 这个怎么取到值

这个怎么取到值

时间:2021-07-01 10:21:17 帮助过:20人阅读

string 'think:["aaa","bbb"]'
我要取到里面的aaa和bbb怎么做?


回复讨论(解决方案)

substr() 函数 自己百度

时常关注博客:http://www.phpthinking.com/

substr() 函数 自己百度

时常关注博客: http://www.phpthinking.com/

aaa与bbb的长度是固定的吗。 楼上的 substr()就可以。

substr

$s='think:["aaa","bbb"]';preg_match_all('/"(.+?)"/',$s,$m);print_r($m[1]);

我觉得还是用substr比较靠谱

其实可以先整理为json可以解释的格式,再json_decode得到数组。

$str = 'think:["aaa","bbb"]';$str = '{'.$str.'}';$str = preg_replace('/(\w+):/is', '"$1":', $str);$result = json_decode($str,true);print_r($result['think']);


Array
(
[0] => aaa
[1] => bbb
)

人气教程排行