Advertisement
Guest User

Untitled

a guest
Nov 28th, 2019
218
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.25 KB | None | 0 0
  1. //functions.php
  2. ob_start();
  3.  
  4.  
  5. //footer.php
  6. <?php
  7.  
  8. $all_cont = ob_get_contents();
  9.  
  10. ob_end_clean();
  11.  
  12.  
  13. $all_cont = str_replace('source', 'target',$all_cont);
  14.  
  15. $all_cont = str_replace('source', 'target',$all_cont);
  16.  
  17.  
  18. echo $all_cont;
  19.  
  20. ?>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement