为了账号安全,请及时绑定邮箱和手机立即绑定
“最经常用作回调函数(callback)参数的值 ”这句话,老师讲的可不明白呀。伙伴们再读一下题意。老师的例子中是把匿名函数作为回调函数来用的。而不是回调函数参数的值。有没有伙伴可以贡献一下正解。
case 3:
for ($i=1;$i<=$length;$i++){
if($i==rand(1,$length)||$i%2==0){
echo chr(rand(97,122)).'-';
}else
echo rand(0,9).'-';
}
break;
}
}
function randTest($type,$length=4){
switch ($type){
case 1:
for($i=1;$i<=$length;$i++){
echo rand(0,9).'-';
}break;
case 2:
for($i=1;$i<=$length;$i++){
echo chr(rand(97,122)).'-';
}break;
function createFile($filename){
$file = $filename;
$a = substr(strrchr($file, '.'), 1);
return $a;
}
echo createFile('1.html');
超全局变量 $GLOBALS 很好用
function get_extension($file)
{
return pathinfo($file, PATHINFO_EXTENSION);//返回文件扩展名函数
}
// 查找文件名,输出后缀名
function extend_end($filename){
echo substr($filename, strripos($filename, '.'));
}
extend_end('hell000o .world.html');
任务:
function getFileExt(string $path) :string {
return pathinfo($path)['extension'];
}
小任务:
<?php
header('content-type:text/html;charset=utf-8');
if(!function_exists('get_extension')){
function get_extension($file)
{
return pathinfo($file, PATHINFO_EXTENSION);
}
}
echo get_extension('1234234.php.txt');
?>
小任务:
<?php
header('content-type:text/html;charset=utf-8');
if(!function_exists('get_extension')){
function get_extension($file)
{
$info = pathinfo($file);
return $info['extension'];
}
}
echo get_extension('1234234.php.txt');
?>
小任务:
<?php
header('content-type:text/html;charset=utf-8');
if(!function_exists('get_extension')){
function get_extension($file)
{
return end(explode('.', $file));
}
}
echo get_extension('1234234.php.txt');
?>
小任务:
<?php
header('content-type:text/html;charset=utf-8');
if(!function_exists('get_extension')){
function get_extension($file)
{
return substr($file, strrpos($file, '.')+1);
}
}
echo get_extension('1.php.html');
?>
课程须知
对php的基础知识掌握,如变量、常量、数组、流程控制、系统函数等。
老师告诉你能学到什么?
1、如何自定义函数 2、函数的执行原理 3、自定义函数中参数的使用 4、特殊函数的使用(可变函数、递归函数、毁掉函数) 5、封装常用函数

微信扫码,参与3人拼团

意见反馈 帮助中心 APP下载
官方微信
友情提示:

您好,此课程属于迁移课程,您已购买该课程,无需重复购买,感谢您对慕课网的支持!

本次提问将花费2个积分

你的积分不足,无法发表

为什么扣积分?

本次提问将花费2个积分

继续发表请点击 "确定"

为什么扣积分?

举报

0/150
提交
取消