J
J
Jeracsus2020-07-27 12:26:03
PHP
Jeracsus, 2020-07-27 12:26:03

How to fix a bug in php?

if(empty($errors)){
    $json = json_encode([
        'type' => 'success',
        'message'  => 'Successfull'
    ], JSON_UNESCAPED_UNICODE);
    
}else{
    $json = json_encode([
        'type' => 'error',
        'messege' => $errors[],
    ], JSON_UNESCAPED_UNICODE);
    
}
echo $json;

Code like this gives
Fatal error: Cannot use [] for reading in

Answer the question

In order to leave comments, you need to log in

1 answer(s)
A
Alexey Ukolov, 2020-07-27
@Jeracsus

'message' => $errors,

Didn't find what you were looking for?

Ask your question

Ask a Question

731 491 924 answers to any question