If you want a quick way to remove NULL, FALSE and Empty Strings (""), but leave values of 0 (zero), you can use the standard php function strlen as the callback function:eg:<?php// removes all NULL, FALSE and Empty Strings but leaves 0 (zero) values$result = array_filter( $array, 'strlen' );?>