我有一堆图片我想在图片中搜索特定图像我想检查该图像是否在矩阵中可用<?php $ima="image1.PNG";$md5image1 = md5(file_get_contents($ima));$images=array( "image1.PNG","image2.PNG","image3.PNG","image4.PNG" ); srand(time()); shuffle($images); for ($i=0;$i<5;++$i) if ($ima == $images) { echo "yes";} else { echo "no";}?>
1 回答
缥缈止盈
TA贡献2041条经验 获得超4个赞
尝试这个
<?php
$ima="image1.PNG";
$md5image1 = md5(file_get_contents($ima));
$images=array( "image1.PNG","image2.PNG","image3.PNG","image4.PNG" );
srand(time());
shuffle($images);
if (in_array("$ima", $images))
{
echo "Search found";
}
else
{
echo "Search not found";
}
?>
- 1 回答
- 0 关注
- 177 浏览
添加回答
举报
0/150
提交
取消