检查链接是否是图像,并在单个请求中获取图像内容

时间:2015-11-05 14:57:08

标签: php

现在我的代码在下面。我相信发送两个请求到Image url

if(getimagesize($imgurl)) // request 1
{

$imgget = file_get_contents("$imgurl"); // request 1
//other operations done here..
}

如何检查其有效图像以及其有效图像是否在单个请求中获取其内容。

即,如下所示

 if($imgget = getimagesize($imgurl)) // request 1
    {

    //$imgget must have image contents  

    }

0 个答案:

没有答案