setlocale ("LC_TIME", "ge")

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

  • setlocale ("LC_TIME", "ge")

    setlocale ("LC_TIME", "ge") mach ich, weil ich wochentage auf deutsch haben will und es kommt die fehlermeldung:

    Notice: Passing locale category name as string is deprecated. Use the LC_* -constants instead. in c:\wampp13cs\htdocs\time.php on line 11

  • #2
    setlocale() gibt die neue Einstellung oder FALSE (wenn die locale-Funktionalität auf der System-Plattform nicht unterstützt wird oder der Kategorie-Wert ungültig ist) zurück. Ein ungültiger Kategorie-Name erzeugt auch noch eine Warnmeldung.

    Kommentar


    • #3
      Vielleicht sinds die Gänsefüßken?

      Kommentar


      • #4
        In den Usernotes stehts ohne "" drinne. Wahrscheinlich liegts wohl daran!

        if you have the warning message :
        Warning: Passing locale category name as string is deprecated. Use the LC_* -constants instead.
        Delete simple or double quotes on 'category' variable.
        For example use :
        setlocale(LC_TIME,"fr_FR");
        instead of :
        setlocale("LC_TIME","fr_FR");
        Jaja, wer da wohl ließt.

        Kommentar


        • #5
          und hier nochmal ganz genau fuer alle die es auf deutsch umstellen wollen:

          PHP-Code:
          setlocale("LC_ALL""de_DE"); 
          laut meinem php buch.

          oder wer es nur fuer die zeit braucht:

          PHP-Code:
          setlocale("LC_TIME""de_DE"); 

          Kommentar

          Lädt...
          X