1

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

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

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

希望这是有道理的。

4

2 回答 2

1

采用 :

$result = implode("\n",$json);
于 2012-08-02T21:11:57.970 回答
1

你可以做:

$json = explode(",", file_get_contents("http://api.easyjquery.com/ips/?ip=".$theirip."&full=true"));
$text = implode("\n",$json);
于 2012-08-02T21:13:42.773 回答