📜  cakephp 提取数组 - PHP 代码示例

📅  最后修改于: 2022-03-11 14:54:29.835000             🧑  作者: Mango

代码示例1
According to the documentation: "Tokens are composed of two groups. Expressions, are used to traverse the array data, while matchers are used to qualify elements.".

{n}[rating>-1] is considered one token. 
{n} is the expression which filters the array keys, in this case the key must be numeric. 
[rating>-1] is the matcher which filters the array elements, in this case the element must be an array that contains a key named rating and an associated value that is greater than -1. 
Once you have the array element then you can get the rating.

$ratings = array(
  'Rating' => array(
    array(
      'id' => 4,
      'rating' => -1
    ),
    array(
      'id' => 14,
      'rating' => 9.7
    ),
    array(
      'id' => 26,
      'rating' => 9.55
    )
  )
);
print_r( Hash::extract($ratings, 'Rating.{n}[rating>-1].rating') );

Results in:

Array ( [0] => 9.7 [1] => 9.55 )