I have a huge file of aroung 7 GB in .txt
format which I'm processing using this thread Reading very large files in PHP.
The sample of the .txt file:
cat
dog
dog
mouse
cat
bird
dog
cat
...
Now, I need to organize this file into something like:
[cat] -> 3
[dog] -> 3
[mouse] -> 1
[bird] -> 1
Please guide where to search to solve this matter. Thank you for your time and advices.