1
我需要從字符串得到的數字一樣,具體的數字/職務:查找字符串
main-section1-1
...
main-section1-512
...
main-section10-12
起初也許我需要從字符串走出字母:
preg_replace("/[^0-9-]+/i", "", $string);
...但接下來呢?
例如:
$string = 'main-section1-1';
預期結果:
$str1 = 1;
$str2 = 1;
或:
$str = array(1,1);
發佈預期的結果 – RomanPerekhrest
「但接下來會發生什麼?」你告訴我們。你嘗試過嗎?如果是這樣,預期結果與實際結果是什麼。 –