Home  >  Article  >  Backend Development  >  How to remove suffix in php

How to remove suffix in php

藏色散人
藏色散人Original
2020-07-08 11:07:123843browse

php method to remove suffix: first create a PHP file; then enter the statement "$filename=str_replace(strrchr($filename, "."),"",$filename); "; finally use echo Just output the result.

How to remove suffix in php

php remove file name suffix

Introduction:

php remove file name suffix (extension Name):

<?php 
$filename="help.php"; 
$filename=str_replace(strrchr($filename, "."),"",$filename); 
echo $filename; 
?>

Output:

help

Related introduction:

PHP gets the file name suffix (extension):

//方法一: 
function extend_1($file_name){ 
$retval=""; 
$pt=strrpos($file_name, "."); 
if ($pt) $retval=substr($file_name, $pt+1, strlen($file_name) - $pt); 
return ($retval); 
} 
 
//方法二 
function extend_2($file_name){ 
$extend = pathinfo($file_name); 
$extend = strtolower($extend["extension"]); 
return $extend; 
} 
 
//方法三 
function extend_3($file_name){ 
$extend =explode("." , $file_name); 
$va=count($extend)-1; 
return $extend[$va]; 
} 
?>

example.exe output: exe

For more related knowledge, please visit PHP Chinese website!

The above is the detailed content of How to remove suffix in php. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn