Answers for "php file save extension"

PHP
1

php change file extension

$newExtension = 'txt';
$info = pathinfo($filename);
$filename = $info['dirname']."/".$info['filename'].'.'.$newExtension;
Posted by: Guest on December-08-2021
0

php file extension

$ext=pathinfo($file, PATHINFO_EXTENSION);
Posted by: Guest on October-09-2021

Browse Popular Code Answers by Language