- var_export: documentation ( source)
- trim: documentation ( source)
- array_walk: documentation ( source)
<?php
$officials = [' off1' , 'off2' , '' , 'off3 ' , null];
// space ^ empty string^ space^ ^null
$result = [];
array_walk(
$officials,
function($v) use (&$result) {
$v = trim((string) $v);
if (strlen($v)) {
$result[] = $v;
}
}
);
var_export($result);