本帖最后由 lovepzt 于 2015-01-09 19:16:09 编辑
都是$$$分割对应
最后$或者换行分割
最后需要得到
youku
第一集第二集第三集第四集第五集tudou
第一集第二集第三集第四集第五集down
第一集第二集第三集第四集第五集------解决思路----------------------$a = explode('$$$', $a);<br />$b = explode('$$$', $b);<br />foreach($a as $i=>$r) {<br /> echo "<li>$r</li>\n";<br /> foreach(explode("\n", $b[$i]) as $j=>$v) {<br /> $t = explode('$', trim($v));<br /> printf("<a href='%d_%d.html' target='_top'>%s</a>\n", $i+1, $j+1, $t[0]);<br /> }<br />}
<li>youku</li><br /><a href='1_1.html' target='_top'>第一集</a><br /><a href='1_2.html' target='_top'>第一集</a><br /><a href='1_3.html' target='_top'>第二集</a><br /><a href='1_4.html' target='_top'>第三集</a><br /><a href='1_5.html' target='_top'>第四集</a><br /><a href='1_6.html' target='_top'>第五集</a><br /><li>tudou</li><br /><a href='2_1.html' target='_top'>第一集</a><br /><a href='2_2.html' target='_top'>第一集</a><br /><a href='2_3.html' target='_top'>第二集</a><br /><a href='2_4.html' target='_top'>第三集</a><br /><a href='2_5.html' target='_top'>第四集</a><br /><a href='2_6.html' target='_top'>第五集</a><br /><li>down</li><br /><a href='3_1.html' target='_top'>第一集</a><br /><a href='3_2.html' target='_top'>第一集</a><br /><a href='3_3.html' target='_top'>第二集</a><br /><a href='3_4.html' target='_top'>第三集</a><br /><a href='3_5.html' target='_top'>第四集</a><br /><a href='3_6.html' target='_top'>第五集</a><br />
但你的数据本该是这样的
$a = 'youku$$$tudou$$$down';<br />$b='第一集$1_1.html<br />第二集$1_2.html<br />第三集$1_3.html<br />第四集$1_3.html<br />第五集$1_5.html$$$第一集$2_1.html<br />第二集$2_2.html<br />第三集$2_3.html<br />第四集$2_4.html<br />第五集$2_5.html$$$第一集$3_1.html<br />第二集$3_2.html<br />第三集$3_3.html<br />第四集$3_4.html<br />第五集$3_5.html';<br /> <br />$a = explode('$$$', $a);<br />$b = explode('$$$', $b);<br />foreach($a as $i=>$r) {<br /> echo "<li>$r</li>\n";<br /> foreach(explode("\n", $b[$i]) as $v) {<br /> $t = explode('$', trim($v));<br /> echo "<a href='$t[1]' target='_top'>$t[0]</a>\n";<br /> }<br />}
<li>youku</li><br /><a href='1_1.html' target='_top'>第一集</a><br /><a href='1_2.html' target='_top'>第二集</a><br /><a href='1_3.html' target='_top'>第三集</a><br /><a href='1_3.html' target='_top'>第四集</a><br /><a href='1_5.html' target='_top'>第五集</a><br /><li>tudou</li><br /><a href='2_1.html' target='_top'>第一集</a><br /><a href='2_2.html' target='_top'>第二集</a><br /><a href='2_3.html' target='_top'>第三集</a><br /><a href='2_4.html' target='_top'>第四集</a><br /><a href='2_5.html' target='_top'>第五集</a><br /><li>down</li><br /><a href='3_1.html' target='_top'>第一集</a><br /><a href='3_2.html' target='_top'>第二集</a><br /><a href='3_3.html' target='_top'>第三集</a><br /><a href='3_4.html' target='_top'>第四集</a><br /><a href='3_5.html' target='_top'>第五集</a><br /><br />