Heim  >  Artikel  >  php教程  >  无限分类获取当前位置的函数

无限分类获取当前位置的函数

PHP中文网
PHP中文网Original
2016-05-25 17:09:301123Durchsuche

php代码

<?php
/*
 * @name		pcb_article_position
 * @access		public
 * @param		int		$id
 * @param		string		$split
 * @return		string
 */
function pcb_article_position ($id, $split=" &raquo; ") {

	global $mysql, $system_webpath;

	$array = array();
	$string = &#39;&#39;;

	do {
		$temp = $mysql->fetch("SELECT `id`, `parent_id`, `name` FROM `pcb_article_category` WHERE `id` = " . $id . " LIMIT 1");
		$array[] = $temp;
		$id = $temp[&#39;parent_id&#39;];
	} while ($temp[&#39;parent_id&#39;] != 0);

	/*
	 * @按二维数组key的降序重新排序
	 */
	krsort($array);

	foreach ($array as $value) {

		$string .= $split . "<a href=&#39;" . $system_webpath . "/article/list-id-" . $value[&#39;id&#39;] . "-page-1.html&#39; title=&#39;" . $value[&#39;name&#39;] . "&#39;>" . $value[&#39;name&#39;] . "</a>";
	}

	return $string;

}
?>
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
Vorheriger Artikel:参数过滤类Nächster Artikel:图片缩略水印类