Ben aşağıdaki veri türünü eşleştirmek için PHP kullanıyorum:
[["1200","135"],["127","13"]]
Ben böyle dizileri ayrı bir diziye bütün sayıları ayıklamak istiyorum:
array(array(1200,135),array(127,13));
I am using preg_match to capture the elements but so far i am not even able to match them against a rule. I will gladly appreciate if someone can help me correct my rule or even provide a solution as to how to accomplish this.
Benim regex kural şudur: / ^[ ([" (\d+) "," (\d+) "])*(,)* ]$ /
I've kept it unescaped to make it more readable on this forum. However it doesn't work. Please help