码迷,mamicode.com
首页 > 其他好文 > 详细

关于glod方法的使用和介绍

时间:2014-11-10 19:20:07      阅读:276      评论:0      收藏:0      [点我收藏+]

标签:style   color   ar   使用   sp   文件   bs   nbsp   php   

<--{吃一堑,长一智}-->
1.glod主要是用来查找文件的;
2. 查找所有后缀名为php的文件
    e.g.<?php
    $file=glob(‘*.php‘);
    ?>  
3.查找以什么字母开头/结尾(区分大小写)的后缀名为什么的文件
    e.g.<?php
    $files = glob(‘../images/a*.jpg’);
    ?>
    <?php
    $files = glob(‘../images/*e.jpg’);
    ?>
4.你还可以加上相对路径查找:
    e.g.<?php
    $files = glob(‘../images/*.jpg’);
    ?>
5.可以得到文件的绝对路径
    e.g.<?php
    $files = glob(‘../images/*.jpg’);
    $file=array_map(‘realpath‘,$files);
    print_r($file);
    ?>

关于glod方法的使用和介绍

标签:style   color   ar   使用   sp   文件   bs   nbsp   php   

原文地址:http://www.cnblogs.com/S-Ping/p/4087578.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!