mirror of
https://github.com/php/php-src.git
synced 2026-03-24 00:02:20 +01:00
* Zend/*: fix a bunch of typos * Zend/tests/try/try_catch_finally_005.phpt: update string length
13 lines
182 B
PHP
13 lines
182 B
PHP
--TEST--
|
|
GC 001: gc_enable()/gc_disable()/gc_enabled()
|
|
--FILE--
|
|
<?php
|
|
gc_disable();
|
|
var_dump(gc_enabled());
|
|
gc_enable();
|
|
var_dump(gc_enabled());
|
|
?>
|
|
--EXPECT--
|
|
bool(false)
|
|
bool(true)
|