function getExt($filename){
$pos = strripos($filename,".");
if(!$pos){
return "擴(kuò)展名不存在!";
}else {
return substr($filename, $pos + 1);
}
}
$pos = strripos($filename,".");
if(!$pos){
return "擴(kuò)展名不存在!";
}else {
return substr($filename, $pos + 1);
}
}
2021-01-16
function catchExte($sExtension){
$sStr = strchr($sExtension,'.');
$sResult = substr($sStr, 1);
return $sResult;
}
$sString = '1fdsf23.html'; //輸入123.php txt.html等等
$sFunc = catchExte($sString);
var_dump($sFunc);
$sStr = strchr($sExtension,'.');
$sResult = substr($sStr, 1);
return $sResult;
}
$sString = '1fdsf23.html'; //輸入123.php txt.html等等
$sFunc = catchExte($sString);
var_dump($sFunc);
2019-04-12
回調(diào)函數(shù)是一種類(lèi)型,準(zhǔn)確地講應(yīng)該是,匿名函數(shù)經(jīng)常用作函數(shù)的回調(diào)函數(shù)類(lèi)型的參數(shù)。
2018-10-07