php 读取目录下图像文件_PHP教程
程序员文章站
2022-05-22 18:06:44
...
php 读取目录下图像文件
本款是一款php 读取目录下图像文件哦,代码,他利用了opendir来打开目录然后获取文件后缀名,判断是否为指定文件。
php教程 读取目录下图像文件
本款是一款php 读取目录下图像文件哦,代码,他利用了opendir来打开目录然后获取文件后缀名,判断是否为指定文件。
*/
$directory = 'gallery';
$allowed_types=array('jpg','jpeg','gif','png');
$file_parts=array();
$ext='';
$title='';
$i=0;$dir_handle = @opendir($directory) or die("there is an error with your image directory!");
while ($file = readdir($dir_handle))
{
if($file=='.' || $file == '..') continue;
$file_parts = explode('.',$file);
$ext = strtolower(array_pop($file_parts));$title = implode('.',$file_parts);
';
$title = htmlspecialchars($title);
$nomargin='';
if(in_array($ext,$allowed_types))
{
if(($i+1)%4==0) $nomargin='nomargin';
echo '
$i++;
}
}closedir($dir_handle);
推荐阅读
-
[视频教程] docker端口映射与目录共享运行PHP
-
LNMP下防跨站、跨目录的安全设置,仅支持PHP5.3.3以上版本
-
windows7下安装php的imagick和imagemagick扩展教程
-
CentOS 6.3下给PHP添加mssql扩展模块教程
-
Windows下编译PHP和memcache扩展教程
-
CentOS7.0下安装PHP5.6.30服务的教程详解
-
windows7下安装php的php-ssh2扩展教程
-
Windows下的PHP 5.3.x安装 Zend Guard Loader教程
-
IIS6下配置fastcgi的php的教程
-
基于Windows下Apache PHP5.3.1安装教程