String Replace

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

  • String Replace

    hi,

    ich hab folgendes Problem.
    Und zwar möchte ich in einer Textdatei einen bestimmten Teil ersetzten. Nur das funzt irgendwie nicht.

    Mein code :

    $fp = fopen("inc/reg.txt", "r");
    $text .= fread($fp, filesize("inc/reg.txt"));
    fclose($fp);
    ereg_replace ("%USEREMAIL%","Test",$text);

    Auszug aus dem Textfile :

    Blabla...
    http://localhost/mail/check.php?op=check&email=USEREMAIL

    protaction² - protection in action -
    [color=blue]die community für inline-skater, skateborder, kickboard und classic skater[/color]

    www.protaction2.de

  • #2
    $text = ereg_replace ("%USEREMAIL%","Test",$text);

    Kommentar


    • #3
      Oh ja .

      Brett vorm Kopf !!!

      wird aber trotzdem nicht ersetzt ?? Was nun ??

      danke )

      [Editiert von Bladerunner am 16-02-2002 um 19:14]
      protaction² - protection in action -
      [color=blue]die community für inline-skater, skateborder, kickboard und classic skater[/color]

      www.protaction2.de

      Kommentar


      • #4
        ok,

        haut jetzt hin.

        Muß ja im Textfile auch %USEREMAIL% heißen.
        protaction² - protection in action -
        [color=blue]die community für inline-skater, skateborder, kickboard und classic skater[/color]

        www.protaction2.de

        Kommentar

        Lädt...
        X