Open ca-dsgn opened 3 years ago
A simple fix would be replacing the curly braces with [ ]. I wonder if the code is still maintained.
Replace
$result |= ord($built{$i}) ^ ord($signature{$i});
with
$result |= ord($built[$i]) ^ ord($signature[$i]);
Hi guys,
when using your code with PHP 8.0, I am getting this error:
PHP Fatal error: Array and string offset access syntax with curly braces is no longer supported in ./immoscout/Immocaster/Oauth/OAuth.php on line 101
I think this problem is only related to a syntax problem because of using curly braces.
Are there any updates planed to fix this problem?
Thank you and Best, Christian