Maison >développement back-end >tutoriel php >PHP如何判断多张图片文件名,并返回缺少哪张图片?

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

WBOY
WBOYoriginal
2016-06-23 13:24:371208parcourir

各位大神 求救 如何实现 例如 有个字段列表存了(‘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);?>

Déclaration:
Le contenu de cet article est volontairement contribué par les internautes et les droits d'auteur appartiennent à l'auteur original. Ce site n'assume aucune responsabilité légale correspondante. Si vous trouvez un contenu suspecté de plagiat ou de contrefaçon, veuillez contacter admin@php.cn
Article précédent:mysql 排序问题坐等大神Article suivant:php判断url来源