richtig vergleichen

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

  • richtig vergleichen

    Hallo,

    ich habe ein problem. Also wenn er rausfinden soll ob sagen wir mal "hallo = hAlLo" ist sagt er ja ist es... wie bekomm ich es hin das er auch auf groß und kleinschreibung prüft? er sollte nur bei hallo=hallo ja sagen sonnst nein.

    (also mir ja und nein mein ich natürlich ne if schleife die das prüft)

    danke

    Hero2k

  • #2
    glaub ich nicht!
    PHP-Code:
    $text1='hallo';
    $text2='hAllo';
    $text3='hallo';
    echo 
    '$text1: '.$text1.'<br />';
    echo 
    '$text2: '.$text2.'<br />';
    echo 
    '$text3: '.$text3.'<p />';
    echo 
    '$text1 und $text2 sind: ';
    if (
    $text1==$text2)
        echo 
    'gleich<br />';
    else
        echo 
    'nicht gleich<br />';
    echo 
    '$text1 und $text3 sind: ';
    if (
    $text1==$text3)
        echo 
    'gleich<br />';
    else
        echo 
    'nicht gleich<br />';
    echo 
    '$text2 und $text3 sind: ';
    if (
    $text2==$text3)
        echo 
    'gleich<br />';
    else
        echo 
    'nicht gleich<br />'
    Ich denke, also bin ich. - Einige sind trotzdem...

    Kommentar


    • #3
      sorry das war wohl schneller getippt als gedacht *g* aber ich kann positiv festellen das php macht was man programmiert nicht was man will...
      hatte da ne variable verwechselt... sorry nochmal

      Kommentar

      Lädt...
      X