我有一个我无法编辑的字符串。每个名称由,
$json = explode(",", file_get_contents("http://api.easyjquery.com/ips/?ip=".$theirip."&full=true"));
我将它存储在txt文档中,就像测试项目一样。在我爆炸之后,我想知道如何使用\n
将每个被a分隔的内容转换为新行,这样就不会全部在一行上。
希望这是有道理的。
答案 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);