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
The text was updated successfully, but these errors were encountered:
gets obfuscated as one of the followings: $_POST["\142"] = $_POST["\x61"];
or $_POST["\142"] = $_POST["\x61"];
or $_POST["\x62"] = $_POST["\x61"];
etc..
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
The text was updated successfully, but these errors were encountered: