1

尝试使用后期静态绑定时出现此错误。我在谷歌上能找到关于这个错误的所有信息是人们没有 PHP5.3,但我有 5.3.6 版本。

有人可以帮我吗?

谢谢

class Media
{
    private $nom,
            $ext;

    public function ext_autorisees() { return array(); }

    public function __construct( $fichier, $thumb = false )
    {
        $fichier = explode( ".", $fichier );

        $nom = $fichier[0];
        $ext = $fichier[1];

        if( in_array( strtoupper( $ext ), static::ext_autorisees() ) )
        {
            if( strpos( $nom, "thumb_" ) === 0 && !$thumb )
                throw new Exception("");
        }
        else
            throw new Exception("");

        $this->nom = $nom;
        $this->ext = $ext;
    }

    public function getNom() { return $this->nom; }
    public function getExt() { return $this->ext; }
    public function getPath() { return $this->getNom() . "." . $this->getExt(); }
    public function getThumb() { return "thumb_" . $this->getPath(); }

}
4

1 回答 1

1

static::ext_autorisees() 有问题

于 2011-07-30T04:32:33.450 回答