Complex Array function for PHP?

Danzamagu

New member
Ok let's say I have this file "a_file.txt" in it is:

" Day:4-Night:3-Afternoon:1 "

How can I make that data into an array that looks like;

Array
(
[Day] => 4
[Night] => 3
[Afternoon] => 1
)
 
Back
Top