@IceWolf it's fine.
```php
declare(strict_types=1);
echo '0e99' === '0e88' ? 'bad' : 'good';
```
> Output for 4.3.0 - 4.3.11, 4.4.0 - 4.4.9, 5.0.0 - 5.0.5, 5.1.0 - 5.1.6, 5.2.0 - 5.2.17, 7.0.0 - 7.0.33, 7.1.0 - 7.1.33, 7.2.0 - 7.2.34, 7.3.0 - 7.3.33, 7.4.0 - 7.4.33, 8.0.0 - 8.0.30, 8.1.0 - 8.1.31, 8.2.0 - 8.2.27, 8.3.0 - 8.3.16, 8.4.1 - 8.4.3
>> good
@eurosat7 @IceWolf === (strict comparison) won't juggle even without the strict_types declaration. == (loose comparison) will juggles by design even with the strict_types declaration. Got to remember that PHP was originally designed for HTML form handling.