程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 網頁編程 >> PHP編程 >> 關於PHP編程 >> 獲取子class_id集合的函數

獲取子class_id集合的函數

編輯:關於PHP編程

function get_bottom_class_id($class_id){
	if(!isset($class_id) || !is_numeric($class_id)){
		return false;
	}
	global $db;
	static $class_id_array=array();
	$sql="select `class_id` from `".TB_PREFIX."web_class` where `class_parent_id`='".$class_id."'";
	$rows=$db->getRowsArray($sql,MYSQL_NUM);
	if(!empty($rows) && is_array($rows)){
		foreach($rows as $row){
			get_bottom_class_id($row[0]);
		}
	}else{
		$class_id_array[]=$class_id;
	}
	if(is_array($class_id_array)){
		$class_id=implode(',',$class_id_array);
	}else{
		$class_id=$class_id_array;
	}
	return $class_id;
}

 

您可能感興趣的文章

  • php提取身份證號碼中的生日日期以及驗證是否為未成年人的函數
  • XDebug的進度條停在57%,提示waiting for XDebug session錯誤的解決辦法
  • php中數組的並集、交集和差集函數介紹
  • php最精確的字符串長度截取函數
  • Fatal error Class 'SoapClient' not found in ...錯誤處理辦法
  • Fatal error Class 'ZipArchive' not found ...... 的解決辦法
  • PHP數字判斷函數
  • Javascript中如何為函數設置默認參數值

  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved