php将file_get_contents的结果作为数组

时间:2017-04-24 23:23:49

标签: php

我正在尝试从网址收到回复:

$result = file_get_contents('http://example.com/api/test');

它只返回由|分隔的一些信息 例如:

info1|info2|info3

我希望将结果作为数组

类似于$ result = array(file_get_contents('http://example.com/api/test'));

我刚参与了php的东西,请原谅我任何令人困惑的条款!

3 个答案:

答案 0 :(得分:1)

我刚拿到它!

explode("|",$result);

答案 1 :(得分:1)

很简单:

$resultArray = explode("|", $result);

答案 2 :(得分:0)

您可以使用explode()按管道分隔数据。

$result = explode('|',file_get_contents('http://example.com/api/test'))