- array_map: documentation ( source)
- var_dump: documentation ( source)
- htmlentities: documentation ( source)
- explode: documentation ( source)
- array_filter: documentation ( source)
<?php
$result = array_filter(
array_map('strtoupper',
explode(htmlentities("Hello World"))
), fn($v) => $v != 'O'
);
var_dump($result);