(PHP 5 >= 5.3.0)
gc_enabled — Returns status of the circular reference collector
Returns status of the circular reference collector.
此函数没有参数。
   Returns TRUE if the garbage collector is enabled, FALSE otherwise.
  
Example #1 A gc_enabled() example
<?php
if(gc_enabled()) gc_collect_cycles();
?>