fork download
  1. <?php
  2. $s = "fds;43bgf9bvc=gfdgjhk132";
  3. preg_match_all('@([0-9])+@', $s, $m);
  4. $liczby = $m[0];
  5. print_r($liczby);
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 43
    [1] => 9
    [2] => 132
)