PHP Warning: Undefined array key “data”
-
just found this error in my log
mod_fcgid: stderr: PHP Warning: Undefined array key “data” in /…/wp-content/plugins/wp-rest-cache/includes/api/class-endpoint-api.php on line 232the line goes
if ( ! empty( $result ) && is_array( $result ) && ( ( is_array( $result['data'] ) && isset( $result['data']['status'] ) && 200 !== (int) $result['data']['status'] ) || 200 !== http_response_code() ) ) {i guess this one is causing the issue: is_array( $result[‘data’]
would be better to determine data via array_key_exists( ‘data’, $result ), no?i changed it to
if ( ! empty( $result ) && is_array( $result ) && ( ( array_key_exists( 'data', $result ) && isset( $result['data']['status'] ) && 200 !== (int) $result['data']['status'] ) || 200 !== http_response_code() ) ) {
The topic ‘PHP Warning: Undefined array key “data”’ is closed to new replies.