Answers for "php remove file extension from string"

PHP
16

javascript get file extension

var fileName = "myDocument.pdf";
var fileExtension = fileName.split('.').pop(); //"pdf"
Posted by: Guest on August-02-2019
2

remove html from string php

echo strip_tags("Hello <b>world!</b>");
Posted by: Guest on May-18-2020

Code answers related to "php remove file extension from string"

Browse Popular Code Answers by Language