1

我试图在 python 或 PHP 中加载这个对象,但我现在想知道是否有已经编写的库,这样我就不会自己解析文档。

variable = [["1","arbitrary string","another arbitrary string"],
["2","arbitrary string","another arbitrary string"],
["3","arbitrary string","another arbitrary string"],
["4","arbitrary string","another arbitrary string"]];
another_variable = "arbitrary string";

任何提示将不胜感激。谢谢

4

2 回答 2

0

这看起来很像 JSON。PHP 有一些内置函数来处理它 - json_decode,例如:http ://www.php.net/manual/en/function.json-decode.php 。

看起来 Python 还内置了一个 JSON 库:http: //docs.python.org/3/library/json.html(如果您仍在使用“旧”版本)。

于 2013-05-20T19:12:24.700 回答
0

那是一个 JSON 编码的字符串,代表一个数组数组。

您可以使用以下方法使其成为 PHP 原生元素:

$var = json_decode($variable);

请注意,json_decode()它仅在 5.2 之后内置于 PHP。否则你必须从 PEAR 那里得到它。

于 2013-05-20T19:12:39.513 回答