OCA\Richdocuments\Helper::getRandomColor PHP 메소드

getRandomColor() 공개 정적인 메소드

public static getRandomColor ( )
    public static function getRandomColor()
    {
        $str = dechex(floor(rand(0, 16777215)));
        return '#' . str_pad($str, 6, "0", STR_PAD_LEFT);
    }