Heim >Backend-Entwicklung >PHP-Tutorial >php使用post方式获得文件扩展名,_PHP教程

php使用post方式获得文件扩展名,_PHP教程

WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWB
WBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOYWBOriginal
2016-07-13 16:53:571012Durchsuche

php使用post方式获得文件扩展名,

<form action="" method="post">
    <input type="file" value="" name="file" size="20">
    <input type="submit" value="check">
</form>
<?<span>php
    </span><span>header</span>("Content-type:text/html;charse=utf8"<span>);
    </span><span>if</span>(<span>isset</span>(<span>$_POST</span>['file'<span>])){
        </span><span>$pic</span> = <span>$_POST</span>['file'<span>];
        </span><span>$pics</span> = <span>explode</span>(".", <span>$pic</span><span>);
        </span><span>echo</span> "上传文件的扩展名为:".<span>$pics</span>[<span>count</span>(<span>$pics</span>)-1<span>];        
    }
</span>?>

www.bkjia.comtruehttp://www.bkjia.com/PHPjc/1052440.htmlTechArticlephp使用post方式获得文件扩展名, form action="" method="post" input type="file" value="" name="file" size="20" input type="submit" value="check"/form? php header ("Conte...
Stellungnahme:
Der Inhalt dieses Artikels wird freiwillig von Internetnutzern beigesteuert und das Urheberrecht liegt beim ursprünglichen Autor. Diese Website übernimmt keine entsprechende rechtliche Verantwortung. Wenn Sie Inhalte finden, bei denen der Verdacht eines Plagiats oder einer Rechtsverletzung besteht, wenden Sie sich bitte an admin@php.cn