Página 1 de 1

Problema ( Trying to access array offset on value of type null)

Enviado: 29 Set 2020, 10:21
por allison_willian
Notice: Trying to access array offset on value of type null in C:\xampp\storage\vendor\scss.inc.php on line 1753

álguem já passou pelo mesmo problema?

versao php 7.4
opencart 3.0.3.3

Re: Problema ( Trying to access array offset on value of type null)

Enviado: 29 Set 2020, 10:26
por leandrorppo
Olá,

Teste PHP na versão 7.3

Re: Problema ( Trying to access array offset on value of type null) [Resolvido]

Enviado: 29 Set 2020, 10:29
por allison_willian
Consegui Leandro

É só trocar a linha:
$key = $key[1]; //1753
por
$key = isset($key[1]) ? $key[1] : null;

no documento: C:\xampp\storage\vendor\scss.inc.php

Funcionou :D