Suchfunktion innerhalb von einem String (strpos)

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

  • Suchfunktion innerhalb von einem String (strpos)

    Hallo,

    ich suche eine Funktion wie strpos, die aber nicht nach Groß- und Kleinschreibung unterscheidet.

    Habt ihr mir einen Tip?

    Danke

    Gruß, Ingo

  • #2
    stripos()

    EDIT: tschuldigung, hab übersehen dass die Funktion erst in PHP 5 existiert...

    Comment


    • #3
      entweder stripos ab php 5

      oder
      PHP Code:
      strpos('i'strtolower($string)); 
      Ich denke, also bin ich. - Einige sind trotzdem...

      Comment

      Working...
      X