Right now i am working on a PHP script which is fetching all occurencies from a text which have "SizeName":
and here is the code for doing this:
preg_match_all('/"SizeName":"([0-9.]+)"/',$str,$matches);
This line of code is fething occurencies from the first time when it finds "SizeName":
, but how i can make it start printing data after for example the third time when it finds "SizeName":
?
Is it possible and how i can achieve it ?
See Question&Answers more detail:
os 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…