We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Manchmal bekomme ich die Meldung: "Trying to access array offset on value of type null"
Lösungsvorschlag (Zeile 864): if ($result['http_code'] == 200) { ändern zu if (isset($result['http_code']) && $result['http_code'] == 200) {
if ($result['http_code'] == 200) {
if (isset($result['http_code']) && $result['http_code'] == 200) {
The text was updated successfully, but these errors were encountered:
Wolbolar#30 Trying to access array offset on value of type null
6397005
Fixes issues Wolbolar#18 and Wolbolar#30
aebb6ff
No branches or pull requests
Manchmal bekomme ich die Meldung: "Trying to access array offset on value of type null"
Lösungsvorschlag (Zeile 864):
if ($result['http_code'] == 200) {
ändern zu
if (isset($result['http_code']) && $result['http_code'] == 200) {
The text was updated successfully, but these errors were encountered: