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