PHP 函数
Posted 衿华客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了PHP 函数相关的知识,希望对你有一定的参考价值。
函数
- 用户自定义函数
- 函数的参数
- 返回值
- 可变函数
- 内部(内置)函数
- 匿名函数
用户自定义函数
<?php
function makecoffee($type = "cappuccino")
{
return "Making a cup of $type.\n";
}
echo makecoffee();
echo makecoffee(null);
echo makecoffee("espresso");
?>
引用传递参数
<?php
function add_some_extra(&$string)
{
$string .= ‘and something extra.‘;
}
$str = ‘This is a string, ‘;
add_some_extra($str);
echo $str; // outputs ‘This is a string, and something extra.‘
?>
可变数量的参数列表
<?php
function sum(...$numbers) {
$acc = 0;
foreach ($numbers as $n) {
$acc += $n;
}
return $acc;
}
echo sum(1, 2, 3, 4);
?>
php如何声明定义函数
#可以使用默认参数
function myfun($myvar="Moments") {
}
php如何处理参数传递
#按值传递
function myfun($myvar){
$myvar = "Moments";
}
$myvar = "Hello World!";
myfun($myvar);
echo $myvar;
#输出的结果为Hello World!
#引用传递
function myfun(&$myvar){
$myvar = "Moments";
}
$myvar = "Hello World!";
myfun($myvar);
echo $myvar;
#输出的结果为Moments
衿华客
php 教程
- PHP简介
- PHP安装
- PHP语法
- PHP数据类型
- PHP变量
- PHP运算符
- PHP流程控制
- PHP函数
- PHP类与对象
- PHP字符串
- PHP正则表达示
- PHP文件
- PHP图形图像
- PHPXML
- PHP会话缓存
- PHP异常处理
- PHP数据库
- PHP日期时间戳
- PHP代码风格规范
server 环境
frame 框架
case 实例
db 数据库
help
以上是关于PHP 函数的主要内容,如果未能解决你的问题,请参考以下文章