1

我试图让输出在每行之间有换行符,但似乎是因为我的字符串包含一个更复杂的输出,例如“$matches['id']”我无法在任何地方添加通常的 \n\r 行。我尝试了很多方法。有什么建议么?应该很简单

<?php
$file = file_get_contents('page.htm'); 

// -------- PROFILEs --------
preg_match_all('#<a.*?href="(?:http://)www.site.com/profiles/(?P<id>\d+)[^‌​&gt;]+#msi',$file, $matches); 
$profiles = $matches['id'];
$uprofiles = array_unique($profiles);
echo '<pre>',print_r($uprofiles),'</pre>';
file_put_contents('Profile.txt', $uprofiles);

// ---------- IDs ----------
preg_match_all('#<a.*?href="(?:http://)www.site.com/id/(?P<id2>\w+)[^‌​&gt;]+#msi',$file, $matches2); 
$ids = $matches2['id2'];
$uids = array_unique($ids);
echo '<pre>',print_r($uids),'</pre>';
file_put_contents('ID.txt', $uids);

?>

对不起,我是个白痴,显然我错过了一些东西

4

1 回答 1

2

尝试这个:

file_put_contents('Profile.txt', $uprofiles . "\n");

或者这是因为它是一个数组:

file_put_contents('Profile.txt', print_r($uprofiles , true));

看到这篇文章:将数组打印到文件

于 2013-04-24T20:33:45.400 回答