<?php $data = ['beans' => 23, 'peas' => null, 'carrots' => 17, 'turnips' => '', 'potatoes' => 58]; $result = array_filter($data, fn($e) => empty($e)); echo print_r($result, 1);
You have javascript disabled. You will not be able to edit any code.