array_diff

Einklappen
X
 
  • Filter
  • Zeit
  • Anzeigen
Alles löschen
neue Beiträge

  • array_diff

    gibt es eine funktion, die den index im verglichenen array gemäß 0,1,2,3,4,5 etc. schreibt..

    wenn ich mit array_diff 2 arrays vergleiche, dann behält php den index des original-arrays bei, aber ich will das wieder automatisch von 0 aufwärts gezählt wird.

    danke!

  • #2
    Eine Fkt kenn ich jetzt ned, aber selber ist das schnell gestrickt
    PHP-Code:
    $temp array_diff($arr1,$arr2);
    $tempi = array();
    foreach(
    $temp as $wert){
        
    $tempi[] = $wert;

    Gruss

    tobi
    Gutes Tutorial | PHP Manual | MySql Manual | PHP FAQ | Apache | Suchfunktion für eigene Seiten

    [color=red]"An error does not become truth by reason of multiplied propagation, nor does truth become error because nobody sees it."[/color]
    Mohandas Karamchand Gandhi (Mahatma Gandhi) (Source)

    Kommentar


    • #3
      ja sicher, das ist kein problem.

      dachte nur, dass die php-internen funktionen wohl performanter sind als selbstgeschriebene. deshalb frage ich ja. naja, danke.

      Kommentar

      Lädt...
      X