3v4l.org

run code in 300+ PHP versions simultaneously
<?php $uri = "https://eventhubs-objenious.servicebus.windows.net/"; $sasKeyName = "RootManageSharedAccessKey"; $sasKeyValue = "hCakpdhbId7iFnlCx40RGwo0AD2uxwVFXK7VE6m1kjc="; $targetUri = strtolower(rawurlencode(strtolower($uri))); $expires = time(); $expiresInMins = 60; $week = 60*60*24*7; $expires = $expires + $week; $toSign = $targetUri . "\n" . $expires; $signature = rawurlencode(base64_encode(hash_hmac('sha256', $toSign, $sasKeyValue, TRUE))); $token = "SharedAccessSignature sr=" . $targetUri . "&sig=" . $signature . "&se=" . $expires . "&skn=" . $sasKeyName; echo $token
Output for 7.0.0 - 7.0.20, 7.1.0 - 7.1.7
Parse error: syntax error, unexpected end of file, expecting ',' or ';' in /in/qSFQK on line 19
Process exited with code 255.

preferences:
175.56 ms | 1395 KiB | 36 Q