fork download
  1. <?php
  2.  
  3.  
  4.  
  5. $str = '.class { width: 10px !important } .class2 {max-width:100px;} .class3 { width: 20px; } .class4 { width: 20%; }';
  6.  
  7. preg_match_all('~(?<!-)width:\h*\K\d+(?=px)~', $str, $arr);
  8.  
  9. print_r($arr[0]);
Success #stdin #stdout 0.02s 24448KB
stdin
Standard input is empty
stdout
Array
(
    [0] => 10
    [1] => 20
)