0

我正在尝试使用此库https://github.com/nette/tracy在我的网站上启用 PHP 调试器。

我已下载该src文件夹并包含tracy.php在我的应用程序中,但现在出现此错误:

Parse error: syntax error, unexpected '[' in /data/web/virtuals/.../src/Tracy/Bar.php on line 17

这是直到第 17 行 Bar.php 的样子:

<?php

/**
 * This file is part of the Tracy (https://tracy.nette.org)
 * Copyright (c) 2004 David Grudl (https://davidgrudl.com)
 */

namespace Tracy;


/**
 * Debug Bar.
 */
class Bar
{
    /** @var IBarPanel[] */
    private $panels = [];

我究竟做错了什么?我需要别的东西来运行 Tracy 吗?在https://tracy.nette.org/他们说你需要做的就是包括 tracy.php ......

4

0 回答 0