fork download
  1. <?php
  2.  
  3. $data = <<<END
  4. <div class="filmRateInfo"><i class="icon-big-star"></i> <span class="filmRate"><strong rel="v:rating" property="v:average"> 7,5</strong>/10</span>
  5. END;
  6.  
  7. if( preg_match( '#<span class="filmRate"><strong rel="v:rating" property="v:average">([^<]+)</strong>#', $data, $out ) )
  8. {
  9. echo $out[ 1 ];
  10. }
Success #stdin #stdout 0.02s 13064KB
stdin
Standard input is empty
stdout
 7,5