s950329
10/8/2017 - 7:53 AM

清除陣列空值

清除陣列裡的空值,如null, ''...

function removeEmptyElement(array $fields)
{
	foreach ($fields as &$field) {
		if (gettype($field) === 'array') {
			$field = removeEmptyElement($field);
		}
	}
	$fields = array_filter($fields);

	return $fields;
}