PHP 8.3.4 Released!

gc_collect_cycles

(PHP 5 >= 5.3.0, PHP 7, PHP 8)

gc_collect_cyclesÇöp döngülerin toplanması için zorlar

Açıklama

gc_collect_cycles(): int
Uyarı

Bu işlev hala belgelendirilmemiştir; sadece bağımsız değişken listesi mevcuttur.

Çöp döngülerin toplanması için zorlar.

Bağımsız Değişkenler

Bu işlevin bağımsız değişkeni yoktur.

Dönen Değerler

Toplanan çöp döngü sayısı ile döner.

Ayrıca Bakınız

add a note

User Contributed Notes 1 note

up
185
Mason
12 years ago
(Since this function wasn't documented as of the date I left this note...)

If you came here looking for documentation, allow me to point you instead to a section in the user manual about garbage collection that includes a bit at the end about when you would use this feature and what it will actually do: http://php.net/manual/en/features.gc.collecting-cycles.php

Hope it helps!
To Top