> 백엔드 개발 > PHP 튜토리얼 > 多次explode切割并组合,应该如何做呢

多次explode切割并组合,应该如何做呢

WBOY
풀어 주다: 2016-06-13 12:13:29
원래의
1316명이 탐색했습니다.

多次explode切割并组合,应该怎么做呢

本帖最后由 lovepzt 于 2015-01-09 19:16:09 编辑
引用
$a='youku$$$tudou$$$down'
$b='第一集$abcd
第一集$abcd
第二集$abcd
第三集$abcd
第四集$abcd
第五集$abcd$$$第一集$abcd
第一集$abcd
第二集$abcd
第三集$abcd
第四集$abcd
第五集$abcd$$$第一集$abcd
第一集$abcd
第二集$abcd
第三集$abcd
第四集$abcd
第五集$abcd'


都是$$$分割对应
最后$或者换行分割
最后需要得到
  • 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 />
    로그인 후 복사
    관련 라벨:
    원천:php.cn
    본 웹사이트의 성명
    본 글의 내용은 네티즌들의 자발적인 기여로 작성되었으며, 저작권은 원저작자에게 있습니다. 본 사이트는 이에 상응하는 법적 책임을 지지 않습니다. 표절이나 침해가 의심되는 콘텐츠를 발견한 경우 admin@php.cn으로 문의하세요.
    인기 튜토리얼
    더>
    최신 다운로드
    더>
    웹 효과
    웹사이트 소스 코드
    웹사이트 자료
    프론트엔드 템플릿