欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  后端开发

为什么函数使用use会报错?

程序员文章站 2023-12-29 18:38:10
...

phpstorm报错:
为什么函数使用use会报错?

代码:

$container = [];
function app($class_name) use ($container)
{
    return $container -> get($class_name);
}

报错:

Parse error: syntax error, unexpected 'use' (T_USE), expecting '{' in C:\Users\shellus\www\php-redis-note\public\index.php on line 16
相关标签: php

上一篇:

下一篇: