Upload icon indicating copy to clipboard operation
Upload copied to clipboard

File extension not being retrieved

Open owinocliff opened this issue 7 years ago • 1 comments

$file->getNameWithExtension() doesn't return the name with the extension, just appends the "dot" but without the extension images

owinocliff avatar Apr 16 '17 09:04 owinocliff

If you want to get the extension in PHP than you can use this

function get_file_extension($file_name) {
	return substr(strrchr($file_name,'.'),1);
}

VivekMoyal28 avatar May 21 '17 08:05 VivekMoyal28