On xmlToArray method:
Change $value['attributes'] = array_change_key_case($value['attributes']);
To if (is_array($value['attributes'])) $value['attributes'] = array_change_key_case($value['attributes']);
This will prevent Warning: array_change_key_case() error
Log in to post a comment.
On xmlToArray method:
Change
$value['attributes'] = array_change_key_case($value['attributes']);
To
if (is_array($value['attributes']))
$value['attributes'] = array_change_key_case($value['attributes']);
This will prevent Warning: array_change_key_case() error