session_gc

(PHP 7 >= 7.1.0, PHP 8)

session_gcPerform session data garbage collection

Beschreibung

session_gc(): int|false

session_gc() is used to perform session data GC(garbage collection). PHP does probability based session GC by default.

Probability based GC works somewhat but it has few problems. 1) Low traffic sites' session data may not be deleted within the preferred duration. 2) High traffic sites' GC may be too frequent GC. 3) GC is performed on the user's request and the user will experience a GC delay.

Therefore, it is recommended to execute GC periodically for production systems using, e.g., "cron" for UNIX-like systems. Make sure to disable probability based GC by setting session.gc_probability to 0.

Parameter-Liste

Diese Funktion besitzt keine Parameter.

Rückgabewerte

session_gc() returns number of deleted session data for success, false for failure.

Old save handlers do not return number of deleted session data, but only success/failure flag. If this is the case, number of deleted session data became 1 regardless of actually deleted data.

Beispiele

Beispiel #1 session_gc() example for task managers like cron

<?php
// Note: This script should be executed by the same user of web server process.

// Need active session to initialize session data storage access.
session_start();

// Executes GC immediately
session_gc();

// Clean up session ID created by session_gc()
session_destroy();
?>

Beispiel #2 session_gc() example for user accessible script

<?php
// Note: session_gc() is recommended to be used by task manager script, but
// it may be used as follows.

// Used for last GC time check
$gc_time '/tmp/php_session_last_gc';
$gc_period 1800;

session_start();
// Execute GC only when GC period elapsed. 
// i.e. Calling session_gc() every request is waste of resources. 
if (file_exists($gc_time)) {
    if (
filemtime($gc_time) < time() - $gc_period) {
        
session_gc();
        
touch($gc_time);
    }
} else {
    
touch($gc_time);
}
?>

Siehe auch

Hier Kannst Du einen Kommentar verfassen


Bitte gib mindestens 10 Zeichen ein.
Wird geladen... Bitte warte.
* Pflichtangabe
Es sind noch keine Kommentare vorhanden.

PHP cURL-Tutorial: Verwendung von cURL zum Durchführen von HTTP-Anfragen

cURL ist eine leistungsstarke PHP-Erweiterung, die es Ihnen ermöglicht, mit verschiedenen Servern über verschiedene Protokolle wie HTTP, HTTPS, FTP und mehr zu kommunizieren. ...

TheMax

Autor : TheMax
Kategorie: PHP-Tutorials

Midjourney Tutorial - Anleitung für Anfänger

Über Midjourney, dem Tool zur Erstellung digitaler Bilder mithilfe von künstlicher Intelligenz, gibt es ein informatives Video mit dem Titel "Midjourney Tutorial auf Deutsch - Anleitung für Anfänger" ...

Mike94

Autor : Mike94
Kategorie: KI Tutorials

Grundlagen von Views in MySQL

Views in einer MySQL-Datenbank bieten die Möglichkeit, eine virtuelle Tabelle basierend auf dem Ergebnis einer SQL-Abfrage zu erstellen. ...

admin

Autor : admin
Kategorie: mySQL-Tutorials

Tutorial veröffentlichen

Tutorial veröffentlichen

Teile Dein Wissen mit anderen Entwicklern weltweit

Du bist Profi in deinem Bereich und möchtest dein Wissen teilen, dann melde dich jetzt an und teile es mit unserer PHP-Community

mehr erfahren

Tutorial veröffentlichen

Probleme bei mehreren Bildern in Canvas

Der Hauptfehler in deinem Code besteht darin, dass du während der Iteration über die Datenbankergebnisse die Variable img.src überschreibst. Di ...

Geschrieben von jimknight am 28.12.2024 04:36:25
Forum: HTML, JavaScript, AJAX, jQuery, CSS, Bootstrap, LESS
Unlock a World of Sweet Success: How to Master Cookie Clicker!

Thanks for this detailed. Previously my favorite game was candy crush. But from onward I'll try this one in my desert safari Dubai tour.

Geschrieben von Joniemartinez am 27.12.2024 15:46:07
Forum: Entwicklungsumgebungen
Buch über PHP, CSS und MySQL

Glad to see you're motivated to learn! For books on PHP, MySQL, and CSS, I recommend "PHP Objects, Patterns, and Practice" for a deeper look at PH ...

Geschrieben von JuanCarlson am 25.12.2024 11:13:41
Forum: Bücher-Forum
Abfrage in Datenbank

Hallo Zusammen und vielen Dank für die Aufnahme und somit Möglichkeit mich in PHP weiter zu entwickeln. Ich stehe aktuell vor einem Problem. Ich ...

Geschrieben von clancysway am 24.12.2024 03:52:14
Forum: SQL / Datenbanken