Answers for "uncaught error: cannot use object of type stdclass as array in array of objects"

PHP
10

cannot use object of type stdclass as array

$obj_user = json_decode($user, true);

use json_decode($obj, true); 	// add true
Posted by: Guest on January-27-2021

Code answers related to "uncaught error: cannot use object of type stdclass as array in array of objects"

Browse Popular Code Answers by Language