fork(6) download
  1. <?php
  2.  
  3. $img = '<img src="test.png" style="float:left;"/>';
  4. preg_match('/<[^>]+ (style=".*?")/i', $img, $match);
  5. $result = $match[1];
  6.  
  7. echo $result;
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
style="float:left;"