Home > php教程 > php手册 > php foreach正序倒序输出示例代码

php foreach正序倒序输出示例代码

WBOY
Release: 2016-06-06 20:20:38
Original
1323 people have browsed it

这篇文章主要介绍了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 '
  • '; } } ,
    Related labels:
    source:php.cn
    Statement of this Website
    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
    Popular Recommendations
    Popular Tutorials
    More>
    Latest Downloads
    More>
    Web Effects
    Website Source Code
    Website Materials
    Front End Template