我有一堆照片 我想在图片中搜索特定图像 我想检查这张图片在矩阵中是否可用
<?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";
}
?>
答案 0 :(得分:1)
尝试一下
try
{
if(seats.size()>0)
{
for(WebElement abc : seats)
{
if(abc.isEnabled())
{
abc.click();
totalEnabledElements++;
}
}
}
}