fuction fileExtend($filename){
return pathinfo($filename, PATHINFO_EXTENSION);
}
return pathinfo($filename, PATHINFO_EXTENSION);
}
2017-02-09
课后作业:
function getfiletype($filename) {
return pathinfo($filename)["extension"];
}
echo getfiletype('func.php');
function getfiletype($filename) {
return pathinfo($filename)["extension"];
}
echo getfiletype('func.php');
2017-02-08
function str_rand($str,$codeLen){
$rand="";
//生成随机数
for($i=1;$i<$codeLen;$i++){
$rand.=$str[mt_rand(0, strlen($str)-1)];
}
return $rand;
}
echo str_rand("12345676279381823928141231491",'5');
$rand="";
//生成随机数
for($i=1;$i<$codeLen;$i++){
$rand.=$str[mt_rand(0, strlen($str)-1)];
}
return $rand;
}
echo str_rand("12345676279381823928141231491",'5');
2017-02-07
已采纳回答 / 来自火星的Mars
可变函数是php的一个特点。用我的理解来讲:变量的等效替换。下面我用个例子:# 声明一个函数function func(){ echo "this is func";}# 通过函数名调用这个函数func(); // 结果: this is func# 我们将这个函数名赋值给一个变量$func2 = "func";# 再次调用这个函数$func2(); // 结果:this is func# 然后,会发现结果相同,鉴于这种...
2017-01-25