アニメgifか判定のクラス、晒そうと思います。 動かないことに定評があるラブ☆コン(ピュータ)のコードですが、これは動きます。 <?php // mana @20090328 class IfAnimationGif{ var $path; function __construct($path){ $this->path = $path; } function judge(){ $imgcnt = 0; $fp = fopen($this->path,"rb"); @fread($fp,4); $c = @fread($fp,1); if(ord($c) !== 0x39) { // GIF89aである(アニメーションかも) return false; } while(!feof($fp)){ do{ $c = fread($fp,1); }while(ord($c) !== 0x21 &