You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hello
Very nice class ;))
One thing is not working :
$_POST['b'] = $_POST['a']; // $_POST['a'] as an array
I had to replace my code with :
$_POST['b'] = array_replace([], $_POST['a']);
May be a small bug ;))
Thanks