Frage zur Scriptlaufzeit

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

  • Frage zur Scriptlaufzeit

    Hallo zusammen,

    mein Hostingpaket hat eine max_execution_time von 30 Sekunden.
    Ich übertrage eine große Datei mittels cURL von diesem Hostingpaket auf einen entfernten WebDAV Server. Die Übertragung dauert ca. 2 Minuten.

    Was mich jetzt wundert: Die Übertragung wird problemlos ausgeführt und abgeschlossen. Keine Fehler, kein Scriptabbruch. Woran liegt das? Zählt die Übertragungszeit nicht zur Scriptlaufzeit?
    Irgendwie ist das unlogisch...

  • #2
    The set_time_limit() function and the configuration directive max_execution_time only affect the execution time of the script itself. Any time spent on activity that happens outside the execution of the script such as system calls using system(), stream operations, database queries, etc. is not included when determining the maximum time that the script has been running. This is not true on Windows where the measured time is real.
    PHP: set_time_limit - Manual

    Siehe:

    mysql - Real max_execution_time for PHP on linux - Stack Overflow

    Kommentar


    • #3
      Wow, das bringt Licht ins Dunkel!!
      Dankeschön

      Kommentar

      Lädt...
      X