Guest User

Untitled

a guest
Feb 15th, 2014
484
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.73 KB | None | 0 0
  1. $str = '<iframe width="560" height="315" src="//www.youtube.com/embed/abcdef" frameborder="0" allowfullscreen></iframe>';
  2.  
  3. return $str;
  4. // '<iframe width=&#8221;560&#8243; height=&#8221;315&#8243; src=&#8221;//www.youtube.com/embed/abcdef&#8221; frameborder=&#8221;0&#8243; allowfullscreen></iframe>'
  5.  
  6. $str = htmlentities ($content, ENT_QUOTES);
  7. // '&lt;iframe width=&#8221;560&#8243; height=&#8221;315&#8243; src=&#8221;//www.youtube.com/embed/abcdef&#8221; frameborder=&#8221;0&#8243; allowfullscreen&gt;&lt;/iframe&gt;'
  8.  
  9. $str = html_entity_decode( $str );
  10. // '<iframe width=&#8221;560&#8243; height=&#8221;315&#8243; src=&#8221;//www.youtube.com/embed/abcdef&#8221; frameborder=&#8221;0&#8243; allowfullscreen></iframe>'
Advertisement
Add Comment
Please, Sign In to add comment