Skip to main content

Posts

Showing posts with the label remove extension from filename using php

PHP Remove Extension From a Filename with Tutorial

Hi guys, In this blog, i will explain how to remove extension from a filename.If you’ve got a filename that you need to remove the extension from with PHP.We will show remove extension from a filename. i will using pathinfo(), basename(),etc different function to remove file name extension. Here following the remove extension from a filename exmaple. Solution 1: Using pathinfo() Now in this exmaple, The pathinfo() function returns an array containing the directory name, basename, extension and filename.Alternatively, you can pass it one of the PATHINFO_ constants and just return that part of the full filename. $fileName = 'itwebtutsFileName.html'; $withOutExtension = pathinfo($fileName, PATHINFO_FILENAME); output itwebtutsFileName Solution 2: Using basename() Here in this exmaple, If the extension is known and is the same for the all the filenames, you can pass the second optional parameter to basename() to tell it to strip that extension from the filename. $fileName =