Home >Backend Development >PHP Tutorial >PHP如何判断多张图片文件名,并返回缺少哪张图片?

PHP如何判断多张图片文件名,并返回缺少哪张图片?

WBOY
WBOYOriginal
2016-06-23 13:24:371204browse

各位大神 求救 如何实现 例如 有个字段列表存了(‘1.jpg’,‘2.jpg’,‘3.jpg’);
怎么实现判断他与数据库中存放的图片字段是否一样 并把数据库缺少的图片名字返回  
php代码怎么实现   数据库存的是一个字段存多张图片。。。


回复讨论(解决方案)

读取字段内容,解析出图片名
配好路径,在循环中用 file_exists 函数进行检查

首先读出数据库内容。分解成数组,然后遍历,判断文件是否存在。

<?php$arr = array('1.jpg','2.jpg','3.jpg');$notexists = array();foreach($arr as $k=>$v){    if(!file_exists($v)){        $notexists[] = $v;    }}print_r($notexists);?>

首先读出数据库内容。分解成数组,然后遍历,判断文件是否存在。

<?php$arr = array('1.jpg','2.jpg','3.jpg');$notexists = array();foreach($arr as $k=>$v){    if(!file_exists($v)){        $notexists[] = $v;    }}print_r($notexists);?>




我的文件是指定的一个文件夹 怎么让他只判断这个文件夹 是否存在某个文件呢 file_exists

<?php$folder = '/home/fdipzone/xxx/'; // 指定的文件夹$arr = array('1.jpg','2.jpg','3.jpg');$notexists = array();foreach($arr as $k=>$v){    if(!file_exists($folder.$v)){        $notexists[] = $v;    }}print_r($notexists);?>

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
Previous article:mysql 排序问题坐等大神Next article:php判断url来源