PHP - File Handling
How can you read a file into an array of trimmed lines (no trailing newlines) using PHP?
file() returns lines with newlines. Using array_map('trim', ...) removes whitespace including newlines from each line.15+ quiz questions · All difficulty levels · Free
Free Signup - Practice All Questions