str_replace Problem!

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

  • str_replace Problem!

    Hi!

    folgendes, hier mal der code:
    PHP-Code:
     $text str_replace($row2[Griffname], "<a href='' onMouseover=\"ddrivetip('$row2[Griffindex]',
    '#CCCCCC', 300)\"; onMouseout=\"hideddrivetip()\">
    $row2[Griffname]<a/>"$text); 
    Ich will jetzt mit den Code Em und Em7 ersetzen, aber will das so machen,
    dass er Em anders übersetzt als Em7.

    also zb EM ist dann übersetzt:
    Em = x-x-|
    Em7 = -x-|


    ist das irgendwie möglich ?!

    lg tom

  • #2
    Ja.

    Ersetze zuerst Em7 und dann Em
    Ich denke, also bin ich. - Einige sind trotzdem...

    Kommentar


    • #3
      hmm ok edit ....

      das problem ist, es bleibt eh em7 und em ... aber es öffnet sich ein popup
      wenn man drauf kommt.

      hab ich vergesen zu schreiben.

      gibts da nix bei str_replace wo man nur den satz was man schreibt, dass
      er ändern soll ?!

      lg tom

      Kommentar


      • #4
        Und wo kommen EM und EM7 im String vor ?
        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


        • #5
          Wenn diese beiden Werte in $row2[Griffname] vorkommen, dann kannst du der str_replace() auch Arrays übergeben.
          PHP-Code:
          $search = array('em','em7');
          $replace = array('ersetzung fuer em','ersetzung fuer em7');
          $str str_replace($search,$replace,$text); 
          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


          • #6
            Danke das funzt

            Kommentar

            Lädt...
            X