<?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);
You have javascript disabled. You will not be able to edit any code.