将php分解为不同的行

时间:2012-08-02 21:10:08

标签: php explode

我有一个我无法编辑的字符串。每个名称由,

分隔
$json = explode(",", file_get_contents("http://api.easyjquery.com/ips/?ip=".$theirip."&full=true"));

我将它存储在txt文档中,就像测试项目一样。在我爆炸之后,我想知道如何使用\n将每个被a分隔的内容转换为新行,这样就不会全部在一行上。

希望这是有道理的。

2 个答案:

答案 0 :(得分:1)

使用:

$result = implode("\n",$json);

答案 1 :(得分:1)

你可以这样做:

$json = explode(",", file_get_contents("http://api.easyjquery.com/ips/?ip=".$theirip."&full=true"));
$text = implode("\n",$json);