We Recommend

Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems Wicked Cool PHP: Real-World Scripts That Solve Difficult Problems
Wicked Cool PHP contains a wide variety of scripts to process credit cards, check the validity of email addresses, template HTML, and serve dynamic images and text.


Posted By

luman on 03/09/08


Tagged

file extension


Versions (?)


Get file extension


Published in: PHP 


  1. $ext = explode('.',$HTTP_POST_FILES['fichero']['name']);
  2. $ext = $ext[count($ext)-1];
  3. if($ext == "pjpeg") $ext = "jpg";

Report this snippet 

You need to login to post a comment.