$file = file("new.txt"); What happens to the lines that are blank.
I know that an element is created for them but what are they. The reason I ask is I've tried to do an array_keys (find all keys that have the value "")
But it says that it can't find any blank elements. Of course I noticed that the array_keys says it uses an "array input", this might be a manually made array.
not new to programming just the terminology. Not schooled.
I want to remove all blank elements from the array. maybe I should start with the txt file I opened.
Rare data looks like
Hi
how are you
Notbad
and you
not actually data but I want to remove the blank line between "how are you" and "not bad" but I don't know where these lines are they are different everytime.