Horde_Token_Base::getNonce PHP 메소드

getNonce() 공개 메소드

Return a "number used once" (a concatenation of a timestamp and a random numer).
public getNonce ( ) : string
리턴 string A string of 6 bytes.
    public function getNonce()
    {
        return pack('Nn', time(), mt_rand());
    }