Posts by user3081078 • 11 points
2 posts
-
0
votes2
answers412
viewsA: Objects and Memory Permanence in PHP
As clarified in the comments of the question, the only way to maintain the state of the objects with each PHP request is to save them as a session variable. To continue the development in Object…
-
0
votes2
answers412
viewsQ: Objects and Memory Permanence in PHP
It is possible to keep objects in memory during a session in PHP or you need to use the "Session" variable to store the previously instantiated objects? The goal is to create a web system similar to…