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

maskKey() 공개 메소드

Creates a unique identifier to append attributes to the internal property table.
public maskKey ( string $key ) : string
$key string The key used to create a unique identifier
리턴 string The unique identifier
    public function maskKey($key)
    {
        return sprintf('%s-%s', $this->getSerial(), $key);
    }