cakephp extract array

// input
$data = Array(
    [0] => Array (
            [Product] => Array (
                    [id] => 5
                    [product_number] => RT001C
                ))
    [1] => Array (
            [Product] => Array  (
                    [id] => 7
                    [product_number] => RC001C 
                ))
);

$data = Hash::extract($data, '{n}.Product');
// => output
$data = Array(
  	[0]	=> Array (
      	[id] => 5
      	[product_number] => RT001C
    )
    [1] => Array (
     	[id] => 7
      	[product_number] => RC001C 
    )
);

3.57
7
D_S 115 points

                                    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 )

3.57 (7 Votes)
0
Are there any code examples left?
Made with love
This website uses cookies to make IQCode work for you. By using this site, you agree to our cookie policy

Welcome Back!

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign in
Recover lost password
Or log in with

Create a Free Account

Sign up to unlock all of IQCode features:
  • Test your skills and track progress
  • Engage in comprehensive interactive courses
  • Commit to daily skill-enhancing challenges
  • Solve practical, real-world issues
  • Share your insights and learnings
Create an account
Sign up
Or sign up with
By signing up, you agree to the Terms and Conditions and Privacy Policy. You also agree to receive product-related marketing emails from IQCode, which you can unsubscribe from at any time.
Creating a new code example
Code snippet title
Source