Make all variables global, PHP

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

Is there a way to make all variables global?

6条回答
  •  南方客
    南方客 (楼主)
    2020-12-19 04:11

    It doesn't matter what you're trying to do, but this is a bad way of going about it. You'll be much better off just passing variables as arguments to functions or by declaring them global there.

    but in short, there is no simple way to do it without a lot of global statements.

提交回复
热议问题