fork download
  1. <?php
  2.  
  3. $source = '
  4. <body></body>
  5. <body class="foobar"></body>
  6. ';
  7.  
  8. $bodyTag = "foobar";
  9.  
  10. $source = preg_replace(
  11. '/<body([\S\s][^>]*)>/',
  12. '<body$1><noscript>' . $bodyTag . '</noscript>',
  13. $source
  14. );
  15.  
  16. echo $source;
Success #stdin #stdout 0.02s 23964KB
stdin
Standard input is empty
stdout
<body></body><noscript>foobar</noscript>
<body class="foobar"><noscript>foobar</noscript></body>