- var_dump: documentation ( source)
- strtolower: documentation ( source)
<?php
$allowed_html = [
'div' => [ 'class' => true ],
];
$elem = 'DIV';
var_dump( ( ! isset( $allowed_html[ $elem ] ) ) );
var_dump( ( ! isset( $allowed_html[ strtolower( $elem ) ] ) ) );