Reading and writing global variables across scripts in PHP

前端 未结 9 1911
悲&欢浪女
悲&欢浪女 2020-12-11 21:56

Does PHP have global variables that can be modified by one running script and read by another?

9条回答
  •  忘掉有多难
    2020-12-11 22:09

    You can actually do this using shared memory, or APC (which is using shared memory itself).

提交回复
热议问题