<?php $rules = [ "is_www" => true, "no_encoding_meta_tag" => true, "https_to_http_links" => false, "has_render_blocking_resources" => false, "low_content_rate" => false, "title_too_short" => false, "no_description" => false, "no_favicon" => false ]; $checks = [ "is_www" => false, "no_encoding_meta_tag" => false, "https_to_http_links" => true, "has_render_blocking_resources" => true, "low_content_rate" => false, "title_too_short" => false, "no_description" => false, "no_favicon" => false ]; $issue = []; foreach ($checks as $v => $i) { foreach ($rules as $w => $j) { if ($v == $w) { if ($i != $j) { $issue[$v] = $i; } } } } var_dump($issue);
You have javascript disabled. You will not be able to edit any code.