Funktionen im Hintergrund starten

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

  • Funktionen im Hintergrund starten

    Hallo Leute,

    ich habe eine möglicherweise recht einfach zu beantwortende Frage:
    Ich möchte eine Funktion aufrufen die eine sehr lange Laufzeit hat.
    Diese Funktion soll im Hintergrund gestartet werden und abgearbeitet werden, während das PHP-Script normal weiterläuft.

    Wie kann ich das realisieren?

    Vielen Dank
    Andreas

  • #2
    exec() macht das - Hier ein Auszug aus dem Manual:

    Note also that if you start a program using this function and want to leave it running in the background, you have to make sure that the output of that program is redirected to a file or some other output stream or else PHP will hang until the execution of the program ends.

    Kommentar

    Lädt...
    X