<?php enum TestEnum { case A; } $true = true; $enum = TestEnum::A; var_dump( $enum == $true, $enum == true, (bool)$enum, );
You have javascript disabled. You will not be able to edit any code.