PHP: Split cookie value and count parts
问题 I am a PHP beginner and hope someone here can help me with this. I have a string that looks like the following example where the separator is an underscore and the length of the string can vary. The three digit numbers are IDs and the numbers in brackets are counts. Example: 101(2)_102(3)_103(5) I am looking for a way to split this in a way that I can access each ID and each count in order to use them for further calculations etc. I tried using explode but couldn't get this to work. My