这个怎么取到值

WBOY
WBOYoriginal
2016-06-23 13:49:251048parcourir

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
)

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn