for i2 STUDIOS Visit http://www.i2studios.com for additional details This script is free and can be used freely. For details about license, refer to http://www.i2studios.com/php/policy.php */ //return file suffix function getSuffix($filename){ if (preg_match("/.*\.(.*)$/", $filename, $matches)) { return $matches[1]; } else return NULL; } //return file stem function getStem($filename){ if (preg_match("/(.*)\.[^\.]*$/", $filename, $matches)) { return $matches[1]; } else return NULL; } ?>