Possible Duplicate:
Deprecated: Function split() is deprecated. How to rewrite this statement?
I'm getting a Deprecated: function split() is deprecated error on this code.
function getFileExt($filename) {
$filename = strtolower($filename) ;
$exts = split("[/\\.]", $filename) ;
$n = count($exts)-1;
$exts = $exts[$n];
return $exts;
I'm meant to rewrite it or something but I have no idea how!
If somebody could help many thanks!