fork download
  1. <?php
  2.  
  3. $string = "10(400)";
  4.  
  5. preg_match_all('#\d+#', $string, $matches);
  6.  
  7. print_r($matches);
Success #stdin #stdout 0.02s 52432KB
stdin
Standard input is empty
stdout
Array
(
    [0] => Array
        (
            [0] => 10
            [1] => 400
        )

)