fork download
  1. <?php
  2.  
  3. $iframe = '<iframe width=\"660\" height=\"370\" frameborder=\"0\" scrolling=\"no\" src=\"http:\/\/api.dmcloud.net\/embed\/53b5149794739966184c1a71\/548f065806361d7e915cc89e?preset=543e41ca06361d414ze777c8\"><\/iframe>';
  4. $newIframe = preg_replace('%<iframe(.*?)src=\\\\".*?dmcloud.*?\\\\/embed\\\\/.*\\\\/(.*?)\?.*?"><\\\\/iframe>%', '<iframe $1 src=\"My_New_String/$2\"<\\\\/iframe>', $iframe);
  5. echo $newIframe;
  6.  
Success #stdin #stdout 0.03s 52480KB
stdin
Standard input is empty
stdout
<iframe  width=\"660\" height=\"370\" frameborder=\"0\" scrolling=\"no\"  src=\"My_New_String/548f065806361d7e915cc89e\"<\/iframe>