phpstorm报错:
代码:
$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
知道了,要这样才行:
use关键词只有闭包才能用 :)