fork download
  1. <?php
  2.  
  3. $string = '<img alt="" src="{{url}}" style="height:266px; width:400px">';
  4.  
  5. echo preg_replace("/style.*(height):(\d+).*(width):(\d+).*\"/ui", '$1="$2" $3="$4"', $string);
Success #stdin #stdout 0.02s 23936KB
stdin
Standard input is empty
stdout
<img alt="" src="{{url}}" height="266" width="400">