PHP - Başka bir ifade nasıl değiştirilir?

0 Cevap php

How can i replace this <p><span class="headline"> with this <p class="headline"><span> easiest with PHP.

$data = file_get_contents("http://www.ihr-apotheker.de/cs1.html");
$clean1 = strstr($data, '<p>');
$str = preg_replace('#(<a.*>).*?(</a>)#', '$1$2', $clean1);
$ausgabe = strip_tags($str, '<p>');
echo $ausgabe;

Ben <p> etiketi yayılma gelen sınıf bildirimi almak istiyorum siteden html değiştirmek önce.

0 Cevap