AppserverIo\Appserver\Core\Traits\ThreadedContextTrait::unmaskKey PHP 메소드

unmaskKey() 공개 메소드

Umasks the unique key.
public unmaskKey ( string $key ) : string
$key string The unique key to unmask
리턴 string The unmasked key
    public function unmaskKey($key)
    {
        return str_replace(sprintf('%s-', $this->getSerial()), '', $key);
    }