Skip to content

Commit 86f463c

Browse files
committed
Merge branch 'PHP-7.3' into PHP-7.4
* PHP-7.3: Fixed bug #79080 [ci skip]
2 parents 3291891 + a1f2f8f commit 86f463c

File tree

2 files changed

+12
-26
lines changed

2 files changed

+12
-26
lines changed

php.ini-development

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1394,26 +1394,19 @@ session.cookie_samesite =
13941394
; http://php.net/session.serialize-handler
13951395
session.serialize_handler = php
13961396

1397-
; Defines the probability that the 'garbage collection' process is started
1398-
; on every session initialization. The probability is calculated by using
1399-
; gc_probability/gc_divisor. Where session.gc_probability is the numerator
1400-
; and gc_divisor is the denominator in the equation. Setting this value to 1
1401-
; when the session.gc_divisor value is 100 will give you approximately a 1% chance
1402-
; the gc will run on any given request.
1397+
; Defines the probability that the 'garbage collection' process is started on every
1398+
; session initialization. The probability is calculated by using gc_probability/gc_divisor,
1399+
; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
14031400
; Default Value: 1
14041401
; Development Value: 1
14051402
; Production Value: 1
14061403
; http://php.net/session.gc-probability
14071404
session.gc_probability = 1
14081405

14091406
; Defines the probability that the 'garbage collection' process is started on every
1410-
; session initialization. The probability is calculated by using the following equation:
1411-
; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
1412-
; session.gc_divisor is the denominator in the equation. Setting this value to 100
1413-
; when the session.gc_probability value is 1 will give you approximately a 1% chance
1414-
; the gc will run on any given request. Increasing this value to 1000 will give you
1415-
; a 0.1% chance the gc will run on any given request. For high volume production servers,
1416-
; this is a more efficient approach.
1407+
; session initialization. The probability is calculated by using gc_probability/gc_divisor,
1408+
; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
1409+
; For high volume production servers, using a value of 1000 is a more efficient approach.
14171410
; Default Value: 100
14181411
; Development Value: 1000
14191412
; Production Value: 1000

php.ini-production

Lines changed: 6 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -1398,26 +1398,19 @@ session.cookie_samesite =
13981398
; http://php.net/session.serialize-handler
13991399
session.serialize_handler = php
14001400

1401-
; Defines the probability that the 'garbage collection' process is started
1402-
; on every session initialization. The probability is calculated by using
1403-
; gc_probability/gc_divisor. Where session.gc_probability is the numerator
1404-
; and gc_divisor is the denominator in the equation. Setting this value to 1
1405-
; when the session.gc_divisor value is 100 will give you approximately a 1% chance
1406-
; the gc will run on any given request.
1401+
; Defines the probability that the 'garbage collection' process is started on every
1402+
; session initialization. The probability is calculated by using gc_probability/gc_divisor,
1403+
; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
14071404
; Default Value: 1
14081405
; Development Value: 1
14091406
; Production Value: 1
14101407
; http://php.net/session.gc-probability
14111408
session.gc_probability = 1
14121409

14131410
; Defines the probability that the 'garbage collection' process is started on every
1414-
; session initialization. The probability is calculated by using the following equation:
1415-
; gc_probability/gc_divisor. Where session.gc_probability is the numerator and
1416-
; session.gc_divisor is the denominator in the equation. Setting this value to 100
1417-
; when the session.gc_probability value is 1 will give you approximately a 1% chance
1418-
; the gc will run on any given request. Increasing this value to 1000 will give you
1419-
; a 0.1% chance the gc will run on any given request. For high volume production servers,
1420-
; this is a more efficient approach.
1411+
; session initialization. The probability is calculated by using gc_probability/gc_divisor,
1412+
; e.g. 1/100 means there is a 1% chance that the GC process starts on each request.
1413+
; For high volume production servers, using a value of 1000 is a more efficient approach.
14211414
; Default Value: 100
14221415
; Development Value: 1000
14231416
; Production Value: 1000

0 commit comments

Comments
 (0)