Blogger Information
Blog 20
fans 0
comment 0
visits 14877
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
函数的参数与作用域 2018.8.23
李逍遥
Original
548 people have browsed it

实例

<?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();
?>

运行实例 »

点击 "运行实例" 按钮查看在线实例


Correction status:Uncorrected

Teacher's comments:
Statement of this Website
The copyright of this blog article belongs to the blogger. Please specify the address when reprinting! If there is any infringement or violation of the law, please contact admin@php.cn Report processing!
All comments Speak rationally on civilized internet, please comply with News Comment Service Agreement
0 comments
Author's latest blog post