ASCII码 ASCII码

PHP变量与函数的声明,使用与参数实例演示

发布于:2022-04-20 14:45:18  栏目:技术文档

变量与函数的声明

变量声明:用$符号

  1. $username = '自定义内容';

函数的声明:和js命名函数类似(可添加限制参数和返回类型)

  1. function userName(string $value = ''):string
  2. {
  3. }
  4. //使用外部变量,用use声明
  5. function getItem(...$arr,$value){
  6. return array_fiter($arr,function($item) use $value{
  7. return $item>$value;
  8. });
  9. }

使用与参数实例演示

  1. function userName(string $value = ''):string
  2. {
  3. return '你传的参数:' . value;
  4. }
  5. //调用函数
  6. echo userName('参数');
相关推荐
阅读 +