mirror of
https://github.com/php/php-src.git
synced 2024-12-19 15:00:15 +08:00
17 lines
264 B
Plaintext
17 lines
264 B
Plaintext
|
--TEST--
|
||
|
GC 002: gc_enable()/gc_diable() and ini_get()
|
||
|
--FILE--
|
||
|
<?php
|
||
|
gc_disable();
|
||
|
var_dump(gc_enabled());
|
||
|
echo ini_get('zend.enable_gc') . "\n";
|
||
|
gc_enable();
|
||
|
var_dump(gc_enabled());
|
||
|
echo ini_get('zend.enable_gc') . "\n";
|
||
|
?>
|
||
|
--EXPECT--
|
||
|
bool(false)
|
||
|
0
|
||
|
bool(true)
|
||
|
1
|