Reading and writing global variables across scripts in PHP

前端 未结 9 1882
悲&欢浪女
悲&欢浪女 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:17

    Not as such, but you can use cookies or sessions to maintain data for duration of a user's browsing experience, or you can write to a database or file on-disk if the information needs to persist beyond that.

提交回复
热议问题