在线时间:8:00-16:00
迪恩网络APP
随时随地掌握行业动态
扫描二维码
关注迪恩网络微信公众号
一、总结glob()作用:glob() 函数返回匹配指定模式的文件名或目录。 glob()返回值:该函数返回一个包含有匹配文件 / 目录的数组。如果出错返回 false。 用法:glob("*.txt")
二、PHP glob() 函数定义和用法glob() 函数返回匹配指定模式的文件名或目录。 该函数返回一个包含有匹配文件 / 目录的数组。如果出错返回 false。 语法glob(pattern,flags)
例子例子 1<?php
print_r(glob("*.txt"));
?>
输出类似: Array ( [0] => target.txt [1] => source.txt [2] => test.txt [3] => test2.txt ) 例子 2<?php
print_r(glob("*.*"));
?>
输出类似: Array ( [0] => contacts.csv [1] => default.php [2] => target.txt [3] => source.txt [4] => tem1.tmp [5] => test.htm [6] => test.ini [7] => test.php [8] => test.txt [9] => test2.txt )
|
2022-08-17
2022-11-06
2022-08-17
2022-07-18
2022-07-29
请发表评论