Home  >  Article  >  Backend Development  >  php 数组和字符串的问题

php 数组和字符串的问题

WBOY
WBOYOriginal
2016-06-06 20:24:021216browse

请教一个php数组和字符串的转换问题。我有如下一个字符串:

["approval","bbcode","emoji","english","flags","likes","simplified-chinese"]

除了使用explode函数分割处理外,有没有其他的快速将其转换为数组的方法。

回复内容:

请教一个php数组和字符串的转换问题。我有如下一个字符串:

["approval","bbcode","emoji","english","flags","likes","simplified-chinese"]

除了使用explode函数分割处理外,有没有其他的快速将其转换为数组的方法。

$array = json_decode('["approval","bbcode","emoji","english","flags","likes","simplified-chinese"]', true);

可以用正则,但效率应该低一些

$str = '"approval","bbcode","emoji","english","flags","likes","simplified-chinese"';
preg_match_all('/\".[^,]*\"/',$str,$out);
print_r($out);

php 数组和字符串的问题

也可以自己写c扩展,效率应该和explode差不太多

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn