为啥会出现这种问题呢,我数组越界了?
这是我代码:
<?php
// error_reporting( E_ALL&~E_NOTICE );
function getFunctionExtendName($file){
$extendname=null;
$filearray=array(str_split($file));
for($i=0;$i<strlen($file);$i++){
if($filearray[$i]=="."){
$j=$i+1;
if($j<=strlen($file)){
$extendname.=$filearray[$j];
}
}
}
return $extendname;
}
echo getFunctionExtendName('1.php');
echo '<br>';
echo getFunctionExtendName('2.java');