How can I set the maximum depth limit to unlimited for json_encode function in PHP?
My problem is;
$array = 
[
    [
       [
          ['hello'],
       ],
    ],
];
Json_encode function returns false when I add more than 3 arrays multidimensionally. I wanna remove this limit. How can I do it?
Thanks.
 
    