Correction status:Uncorrected
Teacher's comments:
<?php //声明函数 function name($siteName){ return '我的名字叫'.$siteName; } echo name('李逍遥'); // 调用:按定义的名称调用 名称后面跟一对括号 echo '<hr>'; //当有可选参数的时候,必须把必选参数往前放 function name1($siteName,$showtime='This is a show time'){ return '我的名字叫'.$siteName.$showtime; } echo name1('李逍遥'),'<hr>'; //每声明一个函数就是创建了一个作用域,函数外部声明的变量,在函数内部不能直接使用 $siteName = '这是一个变量'; //声明全局变量 function variate(){ // global $siteName; //在函数内调用全局变量,引用外部变量 return $GLOBALS ['siteName']; // 通过超全局变量$GLOBALS数组访问全局变量 return $siteName; } echo variate(); ?>
点击 "运行实例" 按钮查看在线实例