Ejemplo n.º 1
0
 function _findimg($string)
 {
     return preg_replace_callback('/(<img src=\\")(.+?)(\\".*?\\>)/is', function ($matches) {
         return BigAppAPI::_parseimg($matches[1], $matches[2], $matches[3]);
     }, $string);
 }