- /* Extract the file extension
- *
- * @access public
- * @param string
- * @return string
- */
- function get_extension($filename)
- {
- $x=explode('.',$filename);
- return'.'.end($x);
- }
↧
How to get file extension in PHP?
↧