Heim  >  Artikel  >  Backend-Entwicklung  >  php 获取栏目的所有子级和孙级栏目的ID号的代码

php 获取栏目的所有子级和孙级栏目的ID号的代码

WBOY
WBOYOriginal
2016-07-25 09:04:251137Durchsuche
  1. /***

  2. @ 获取子栏目ID号
  3. @ bbs.it-home.org
  4. @ 2013/2/26
  5. */
  6. private function sonCategoryIds($categoryID)
  7. {
  8. //@初始化栏目数组
  9. $array[] = $categoryID;
  10. do
  11. {
  12. $ids = '';
  13. $temp = $this->mysql->select('SELECT `id` FROM `pcb_article_category` WHERE `parentID` IN (' . $categoryID . ')');
  14. foreach ($temp as $v)
  15. {
  16. $array[] = $v['id'];
  17. $ids .= ',' . $v['id'];
  18. }
  19. $ids = substr($ids, 1, strlen($ids));
  20. $categoryID = $ids;
  21. }
  22. while (!empty($temp));
  23. $ids = implode(',', $array);

  24. return $ids;
  25. }
  26. ?>
复制代码


Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn