刚刚升级到Ubuntu 22.04,现在我的phpadmin无法加载。我得到以下错误
解析错误:语法错误,意外的 'static' (T_STATIC) 在 /usr/share/php/Symfony/Component/DependencyInjection/ContainerBuilder.php 的第272行
我打开了该文件,并在该段落中找到了具体的代码。
public function addResource(ResourceInterface $resource): static
{
if (!$this->trackResources) {
return $this;
}
if ($resource instanceof GlobResource && $this->inVendors($resource->getPrefix())) {
return $this;
}
$this->resources[(string) $resource] = $resource;
return $this;
}
在升级之前,昨天一切都正常工作。有人有什么建议吗?
Copyright 2014-2025 https://www.php.cn/ All Rights Reserved | php.cn | 湘ICP备2023035733号
我正在使用php7.4.30,我的解决方法是升级phpmyadmin。
这里有一个简单的指南:
https://devanswers.co/manually-upgrade-phpmyadmin/