Skip to content
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

PHP Notice: Trying to access array offset on value of type null in simplecheckout_shipping.php #14

Open
sh1sh1n opened this issue Dec 5, 2023 · 0 comments

Comments

@sh1sh1n
Copy link

sh1sh1n commented Dec 5, 2023

Opencart 3.x, PHP 7.4
Имею много нотисов:

PHP Notice: Trying to access array offset on value of type null in /storage/modification/catalog/controller/checkout/simplecheckout_shipping.php on line 221

Открываем файл и видим код, добавленный модулем Apiship:
$code = $this->_templateData['shipping_method']['code'];

В PHP 7.4 и выше были введены более строгие проверки типов для переменных, потому надо убедиться, что
$this->_templateData['shipping_method'] действительно инициализирована и является массивом перед тем, как пытаться получить из нее данные.

Решение:
// Убедитесь, что 'shipping_method' существует и является массивом, прежде чем пытаться получить 'code' if (is_array($this->_templateData['shipping_method']) && isset($this->_templateData['shipping_method']['code'])) { $code = $this->_templateData['shipping_method']['code']; } else { // Можно установить код ошибки или обработать эту ситуацию соответствующим образом $code = null; // или любое другое значение по умолчанию, которое имеет смысл }

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant