I try to convert some code from C++/Qt to php.

There is something like:
Code:
QMultiHash<int, QString> Var;
It means that there can be many values associated to the same key, and at the same time, like:
0 => "Zero"
0 => "0"
0 => "etc."

How can it be done in php?