-
-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Using $_COOKIE is forbidden, use rex_request::cookie() or rex_cookie() instead. #308
Comments
Same bei anderen globalen Variablen $_GET, $_POST, $_FILES !? |
könnte sein. allerdings ist es fragwürdig, warum/wann man wirklich alle diese variablen brauch. klingt nach einem problem im design |
Könnte ja sein dass man dynamische Namen verwendet z.b. ?? |
haste nen konkreteres beispiel? |
Ich habe da jetzt kein konkretes Beispiel. Könnte mir aber vorstellen wenn mit Javascript etliches Zeugs zusammengeklickert wird wäre es manchmal von Vorteil alle Werte gleich in ein Array zu bekommen. Aber es passt auch wenn man die Zeile mit $_COOKIE wird übrigens im consent_manager-AddOn verwendet. |
@gharlan ich frage mich ob wir ggf. bei übergeben von NULL o.ä. oder ggf. ein separater api call? aber ggf. brauch man das auch für GET/POST etc. |
Man kommt an das Array auch über das Symfony-Request-Objekt: Denke es ist schon eher selten, dass man direkt an das Array muss. Ich glaube, ich würde dafür nicht extra eine Methode bei uns einführen. |
Description / Beschreibung
this error should not happen for code like
$x = $_COOKIE;
- so when not a dedicated key is retrievedThe text was updated successfully, but these errors were encountered: