Home >Backend Development >PHP Tutorial >PHP foreach output sample code in forward and reverse order_PHP tutorial

PHP foreach output sample code in forward and reverse order_PHP tutorial

WBOY
WBOYOriginal
2016-07-13 10:26:31810browse

Implementation code:

// 正序
foreach($files as $file_num => $file) {
	if(is_file($directory.$file)){
		//$file = iconv("gb2312","UTF-8",$file); //或者 iconv("gb2312","UTF-8",$value);
		$date = substr($file,0,9);
		echo '<li class="world-cup-'.$date.'">';
		echo '<a href="'.$directory.$file.'" rel="worldcup" title="巴西世界杯赛事'.$date.'">';
		echo '<img src="'.$directory.$file.'" alt="">';
		echo '</a>';
		echo '</li>';
	}
}


// 倒序
foreach(array_reverse($files) as $file_num => $file) {
	if(is_file($directory.$file)){
		//$file = iconv("gb2312","UTF-8",$file); //或者 iconv("gb2312","UTF-8",$value);
		$date = substr($file,0,9);
		echo '<li class="world-cup-'.$date.'">';
		echo '<a href="'.$directory.$file.'" rel="worldcup" title="巴西世界杯赛事'.$date.'">';
		echo '<img src="'.$directory.$file.'" alt="">';
		echo '</a>';
		echo '</li>';
	}
}

www.bkjia.comtruehttp: //www.bkjia.com/PHPjc/824674.htmlTechArticleImplementation code: // Positive sequence foreach($files as $file_num = $file) {if(is_file($ directory.$file)){//$file = iconv("gb2312","UTF-8",$file); //or iconv("gb2312","UTF-8",$value);$date. ..
Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn