Arrays::removeEmpty()
\nn\t3::Arrays()->removeEmpty();
Remove empty values from an array.
$clean = \nn\t3::Arrays( $arr1 )->removeEmpty();
Copied!
| @return array
Source Code
public function removeEmpty() {
return $this->merge( [], $this->toArray() );
}
Copied!