I want to remove empty elements from my array.
I found this code for that :
$outaa = array_map('trim', $outaa);
$outaa = array_filter($outaa);
My array contains elements whose contain '0' only. My code removes those elements too which only have '0' in it. but i dont want to remove those.

"", 0, 0.0, "0", NULL, FALSE, array()?