3

Web画像をローカルに保存しようとしました。ここのコードを使用して判断します。画像ファイル名の末尾が.jpg、.jpeg、.png、または.gifでない場合は、それらを追加します。を使用striposしていますが、このような画像のURLを使用すると問題が発生します。では、どのように解決するのですか?ありがとう。

$webimage = 'http://pcdn.500px.net/5953805/d0dd841969187f47e8ad9157713949b4b95b3bda/4.jpg?1333782904356';
$pieces = explode("/", $webimage); 
$pathend = end($pieces);
$imageinfo = @getimagesize($webimage);
$imagetype= $imageinfo['mime'];
if($imagetype=='image/jpeg'){
    if(stripos($pathend,'.jpg')==0){
        $newpathend = $pathend.'.jpg'; // if image end is't '.jpg', add '.jpg'
    }else if(stripos($pathend,'.jpeg')==0){
        $newpathend = $pathend.'.jpeg'; // if image end is't '.jpg', add '.jpeg'
    }else{
        $newpathend = $pathend;// if image end is '.jpg' or '.jpeg', do not change
    }
}
if($imagetype=='image/png'){
    if(stripos($pathend,'.png')==0){
        $newpathend = $pathend.'.png'; // if image end is't '.png', add '.png'
    }else{
        $newpathend = $pathend;// if image end is '.png', do not change
    }
}
if($imagetype=='image/gif'){
    if(stripos($pathend,'.gif')==0){
        $newpathend = $pathend.'.gif'; // if image end is't '.gif', add '.gif'
    }else{
        $newpathend = $pathend;// if image end is '.gif', do not change
    }
}
4

7 に答える 7

6

preg_matchを使用してみませんか?

if( preg_match('/\.(jpg|jpeg|png|gif)(?:[\?\#].*)?$/i', $webimage, $matches) ) {
    // matching file extensions are in $matches[1]
}
于 2012-04-08T07:04:30.173 に答える
5

あなたはこのように試すことができます

$type=Array(1 => 'jpg', 2 => 'jpeg', 3 => 'png', 4 => 'gif'); //store all the image extension types in array

$imgname = ""; //get image name here
$ext = explode(".",$imgname); //explode and find value after dot

if(!(in_array($ext[1],$type))) //check image extension not in the array $type
{
    //your code here
}
于 2012-04-07T11:31:06.737 に答える
1

この関数pathinfoはあなたを助けるかもしれません。

于 2012-04-07T08:07:50.567 に答える
1

これは、jpgとjpegの両方、および大文字で機能します。また、次のようなファイル名でも機能しますtesting.the.bicycle.jpg

https://regex101.com/r/gI8uS1/1で試してみてください

public function is_file_image($filename)
{
   $regex = '/\.(jpe?g|bmp|png|JPE?G|BMP|PNG)(?:[\?\#].*)?$/';

   return preg_match($regex, $filename);
}
于 2016-05-24T13:21:51.870 に答える
0

stropsを使用する

if (strpos($your_text,'.png') !== false) {
        //do something
 } else if (strpos($your_text,'.jpg') !== false) {
        //do something
 } else if (strpos($your_text,'.gif') !== false) {
        //do something
 }

お役に立てば幸いです!)

于 2015-07-10T06:42:16.667 に答える
0

このページで答えたkingjeffreyから参照

if( preg_match('/\.(jpg)(?:[\?\#].*)?$/i', $imgname, $matches) ) {
    echo "jpg";
}else if( preg_match('/\.(png)(?:[\?\#].*)?$/i', $imgname, $matches) ) {
    echo "png";
}else if( preg_match('/\.(gif)(?:[\?\#].*)?$/i', $imgname, $matches) ) {
    echo "gif";
}
于 2021-09-01T12:39:17.293 に答える
-1
$Extension=strrev(substr(strrev($fileName),0,strpos(strrev($fileName),'.')));
if(preg_match('/png|jpg|jpeg|gif/',$Extension))
{ 
    true 
}
else
{ 
    false
}
于 2016-01-22T18:31:19.057 に答える