Bir Fonksiyon için Argüman olarak Dizisi kullanma

0 Cevap php

Fonksiyon içinde Kod çalışıyor, ama daha sonra bir URL işlemek istediğiniz gibi ben o adresler işlemek için almak için bir dizi kullanarak bir işlev yapmak istedim. İşte Code:

    <?php
$site = array("http://www.ihr-apotheker.de/cs1.html", "http://www.ihr-apotheker.de/cs2.html", "http://www.ihr-apotheker.de/cs3.html");

function parseNAI($sites)
  {
  foreach ($sites as $html)
    {
      $clean_one = strstr($html, '<p>');
      $clean_one_class = str_replace('<p><span class="headline">', '<p class="headline gruen"><span>', $clean_one);
      $clean_one_class_a = strip_tags($clean_one_class, '<p><span><a>');
      $clean_one_class_b = preg_replace("/\s+/", " ", $clean_one_class_a);
      $str_one = preg_replace('#(<a.*>).*?(</a>)#', '$1$2', $clean_one_class_b);
      $ausgabe_one = strip_tags($str_one, '<p>');
      echo $ausgabe_one;
    } 
  };
parseNAI($site);
?>

Where is my problem as the function stops working at the beginning of the foreach.... Thx in advance for your help!

0 Cevap