UriSigner
class UriSigner
Signs URIs.
Methods
__construct(string $secret)
Constructor.
string
sign(string $uri)
Signs a URI.
bool
check(string $uri)
Checks that a URI contains the correct hash.
Details
at line line 28
__construct(string $secret)
Constructor.
at line line 43
string
sign(string $uri)
Signs a URI.
The given URI is signed by adding a _hash query string parameter which value depends on the URI and the secret.
at line line 68
bool
check(string $uri)
Checks that a URI contains the correct hash.
The _hash query string parameter must be the last one (as it is generated that way by the sign() method, it should never be a problem).