检查php

时间:2018-03-16 18:41:29

标签: php arrays array-key-exists

一次只返回一件产品。当产品有成分时,我的代码按预期工作。当它没有,我得到:

  

未定义的偏移量:0

其中引用了代码行:if ($response_decoded['products'][0]['ingredients'] != null){

我理解这是因为没有成分,但有时会出现这种情况,这是不可避免的。

所以,在这一点上:

$request->setMethod(HTTP_Request2::METHOD_GET);

$request->setBody("{body}");

try
{
    $response = $request->send();
    $result = $response->getBody();

    $response_decoded = json_decode($result,true);

    print_r($response_decoded);

......我回来了:

Array ( [products] => Array ( [0] => Array ( [gtin] => 05052909299653 [tpnb] => 065738756 [tpnc] => 272043262 [description] => Tesco Lemon And Lime Zero 2L [brand] => TESCO [qtyContents] => Array ( [quantity] => 2000 [totalQuantity] => 2000 [quantityUom] => ml [netContents] => 2L e ) [productCharacteristics] => Array ( [isFood] => [isDrink] => 1 [healthScore] => 70 [isHazardous] => [storageType] => Ambient [isNonLiquidAnalgesic] => [containsLoperamide] => ) [ingredients] => Array ( [0] => Carbonated Water [1] => Citric Acid [2] => 

等等......

然后我做了:

// check for ingredient array
if ($response_decoded['products'][0]['ingredients'] != null){

// can now target ingredient array
$ingredients = $response_decoded['products'][0]['ingredients'];

所以而不仅仅是!= null我相信我需要事先检查'成分'是否存在。我虽然可以使用array_key_exists来执行此操作。

if (array_key_exists('products', $response_decoded)) {
    echo "Product is there";

}
else{
    echo "Product is not there";

}

现在有效,它告诉我产品是否存在......但是如何检查产品的成分是否存在?

1 个答案:

答案 0 :(得分:1)

如果您使用的是PHP 7+,则无需检查数组的每个维度 - 您可以在最终元素上使用null coalesce operator ??

if ($response_decoded['products'][0]['ingredients'] ?? null !== null) {
    // ingredients exist
}

如果值存在且不为null,则您将陷入此状态。如果数组的任何部分不存在,它将失败,但不会抱怨有关未定义索引的警告。