I want to replace width="" height=""
of Youtube embed code width class="youtube"
instead so that I can set new width and height of Youtube embed with class="youtube"
in CSS
I searched for PHP str_replace()
, preg_replace()
but I still don't know much that they are right to use or do I have to use another function.
Change this :
<iframe width="560" height="315" src="http://" frameborder="0" allowfullscreen></iframe>
To this :
<iframe class="youtube" src="http://" frameborder="0" allowfullscreen></iframe>`