Posts by Dalabona • 26 points
2 posts
-
0
votes2
answers412
viewsA: Objects and Memory Permanence in PHP
Good afternoon, using the serialize() and unserialize() functions it is possible to store objects in $_Sessions. For example: <?php class UserTeste { private $nome = 'teste'; public function…
-
1
votes1
answer21
viewsA: Data Retrieval Problem Multidimenssional Array
Good afternoon, there is a very simple way to solve just use the second parameter of json_decode $data = json_decode(file_get_contents('php://input'), true); This happens because in theory…