I want to convert text file input to an array in PHP.
Here is my text file sample input:
Name:abc
Age: 50
Address:
Postal:123
City:and
DOB:1/5/1996
Array in PHP should be (Output):
[name]->ABC
[AGE]->50
[ADDRESS][POSTAL]->123
[Address][city]=and
[DOB]=1/5/1996
[DOB][time]->8:20
or as
Array(1)
[Name]=>ABC
[Age]=>50
[Address]==> Array(2)
[City]=>and
Array(1)
[DOB]=>1/5/1996
Array(2)
[Time]=>8:20
I truly don't have any clue. Please help me get desired output. PHP code to implement this.
Thanks a lot.