这篇文章主要介绍了php中foreach正序输出与倒序输出的例子,php foreach用法实例,需要的朋友可以参考下
实现代码:
// 正序
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 '
';
echo '';
echo '';
echo '';
echo '';
}
}
// 倒序
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 '
';
echo '';
echo '';
echo '';
echo '';
}
}
,
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