Make all variables global, PHP

后端 未结 6 794
悲&欢浪女
悲&欢浪女 2020-12-19 03:23

Is there a way to make all variables global?

6条回答
  •  再見小時候
    2020-12-19 03:52

    Quick and dirty way:

    $GLOBALS += get_defined_vars();
    

    I don't know if this hack is portable (it works on PHP 5.3.1) and I suspect the objects are cloned.

提交回复
热议问题