Guest User

Untitled

a guest
Dec 15th, 2017
88
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.30 KB | None | 0 0
  1. $img = do_shortcode('[user_meta_avatar_pic]'); // Here your get your img tag
  2.  
  3. // Use DOMDocument to parse your img tag
  4. $dom = new DOMDocument();
  5. $dom->loadHTML($img);
  6. $img_url = base64_encode($dom->getElementsByTagName('img')->item(0)->getAttribute('src')); // Encode the extracted src from your img tag
Add Comment
Please, Sign In to add comment