小任务:
<?php
header('content-type:text/html;charset=utf-8');
if(!function_exists('test')){
function test($fileName){
return substr(strrchr($fileName, '.'), 1);
}
}
echo test('1.php.html');
?>
<?php
header('content-type:text/html;charset=utf-8');
if(!function_exists('test')){
function test($fileName){
return substr(strrchr($fileName, '.'), 1);
}
}
echo test('1.php.html');
?>
2017-12-19
function getExpandedName($filename){
$arr=explode(".",$filename );
return $arr[sizeof($arr)-1];//得到最後一個
}
echo getExpandedName("test.php");
$arr=explode(".",$filename );
return $arr[sizeof($arr)-1];//得到最後一個
}
echo getExpandedName("test.php");
2017-12-04
function getFileName($name = '1.txt')
{
$fileName = substr($name,strripos($name,'.')) ;
return $fileName;
}
{
$fileName = substr($name,strripos($name,'.')) ;
return $fileName;
}
2017-11-29
第一个echo 是输出的调用时传入的数值,第二个echo是输出的上一个if执行完毕输出的数值,所以输出来的结果是相对着的。不错,搞懂了!
2017-11-24
function code(){
$span="";
for ($i=1; $i <=4 ; $i++) {
$span.=mt_rand(0,9);
}
return $span;
}
echo code();
$span="";
for ($i=1; $i <=4 ; $i++) {
$span.=mt_rand(0,9);
}
return $span;
}
echo code();
2017-11-24
function generateFourBitCode(){
$result = "";
for( $i = 0 ; $i < 4 ; $i++ ){
$n1 = mt_rand(48,57);
$n2 = mt_rand(65,90);
$n3 = mt_rand(97,122);
$arr = array($n1,$n2,$n3);
$result .= chr($arr[mt_rand(0,2)]);
}
return $result;
}
$result = "";
for( $i = 0 ; $i < 4 ; $i++ ){
$n1 = mt_rand(48,57);
$n2 = mt_rand(65,90);
$n3 = mt_rand(97,122);
$arr = array($n1,$n2,$n3);
$result .= chr($arr[mt_rand(0,2)]);
}
return $result;
}
2017-11-22
与其使用call_user_func('funcName','funcParams')这种形式还不如直接funcName(funcParams)呢
2017-11-11