PHP beginner |
|
stijn1989 schreef: Als je controller goed werkt moet je in je index.php enkel classes includen die je nodig hebt en ook maar 1 keer je sessie starten. De controller (dispatcher) werkt bijna zoals een paginasysteem. Het zal aan de hand van de controller en action de juiste controller->action(); oproepen.
Als je objecten wilt opslaan moet je inderdaad PHP.net: serialize gebruiken en er moet een __sleep()/__wakeup() functie zijn in de class. Het is best dat je eerst session_start(); doet en dan included, maar omgekeerd is ook niet verkeerd.
MIjn index.php is idd zo opgebouwd dat hij 1 controller en 1 event per keer uitvoerd zoals je hier zegt. Ik heb die link van jou naar php.net eens bekeken en daar staat dat dit bij sessies automatisch gebeurt + de volgende tekst:
Citaat: If you are using sessions and use session_register() to register objects, these objects are serialized automatically at the end of each PHP page, and are unserialized automatically on each of the following pages. This basically means that these objects can show up on any of your pages once they become part of your session.
It is strongly recommended that you include the class definitions of all such registered objects on all of your pages, even if you do not actually use these classes on all of your pages. If you don't and an object is being unserialized without its class definition being present, it will lose its class association and become an object of class stdClass without any functions available at all, that is, it will become quite useless.
So if in the example above $a became part of a session by running session_register("a"), you should include the file classa.inc on all of your pages, not only page1.php and page2.php.
Dus is mijn probleem hiermee niet echt opgelost, want om goed te zijn zou de session_start() enkel in de index.php mogen gebeuren ipv in elke controller en volgens die tekst van php.net moet ik dan alle bestanden gaan includen die in een sessie kunnen zitten. |