Blogger Information
Blog 22
fans 0
comment 0
visits 13142
Popular Tutorials
More>
Latest Downloads
More>
Web Effects
Website Source Code
Website Materials
Front End Template
函数与变量
小淇的博客
Original
1048 people have browsed it

变量:

  1. 变量是储存信息的容器

  2. php中没有声明变量的命令,你在第一次赋值给它的时候创建。

  3. 变量必须用$开始,后面必须紧跟着字母或者下划线

  4. 变量名不要用中文命名

实例

$girl = '小龙女';
$_name = '阿朱'; //正确
//变量必须用$开始,后面必须紧跟着字母或者下划线
$小龙女;
$小龙女 = '猥琐平';
//echo $小龙女;
echo $girl = null;


函数:

  1. 函数使用function声明,圆括号中可以有参数也可以没有

在圆括号中传参

function cooking1($foods){
    return '杨过在一口一口地喂小龙女吃:'.$foods;
}
//2.函数是使用名称调用,可以在圆括号中传参
echo cooking1('野兔');

使用默认值

function cooking2($foods='神雕'){
    return '杨过在一口一口地喂小龙女吃:'.$foods;
}
echo cooking2();

使用变量作为实参传参

function cooking3($foods='神雕'){
    return '杨过在一口一口地喂小龙女吃:'.$foods;
}
$foods = '郭襄';
echo cooking3($foods);

总结:

//1.程序主要是由变量和函数组成
//2.变量是临时存放数据的地方
//3.函数是程序的核心,是唯一可以被执行的对象
//4.函数是实现代码复用的重要手段,一次定义多次调用

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