fork download
  1. <?php
  2.  
  3. $text = <<<HTML
  4. <ul>
  5. <li>Первая строчка</li>
  6. <li>Вторая строчка</li>
  7. <li>Третяя строчка</li>
  8. </ul>
  9. HTML;
  10.  
  11. $search = <<<SRCH
  12. <ul>
  13. <li>Первая строчка</li>
  14. SRCH;
  15.  
  16. $replace = <<<RPLCMNT
  17. <div class="block">
  18. <h1>Первая строчка</h1>
  19. <ul>
  20. RPLCMNT;
  21.  
  22.  
  23. echo str_replace($search, $replace, $text);
  24.  
Success #stdin #stdout 0.01s 20520KB
stdin
Standard input is empty
stdout
	<div class="block">
		<h1>Первая строчка</h1>
	<ul>
		<li>Вторая строчка</li>
		<li>Третяя строчка</li>
	</ul>