1

if I do a print_r of my array I get :

Array ( 
    [0] => stdClass Object ( 
        [ID] => 34 
        [post_author] => 1 
        [post_date] => 2012-04-16 14:07:08 
        [post_date_gmt] => 2012-04-16 14:07:08 
        [post_content] => 
        [post_title] => visit_sfondo01 
        [post_excerpt] => 
        [post_status] => inherit 
        [comment_status] => open 
        [ping_status] => open 
        [post_password] => 
        [post_name] => visit_sfondo01-2 
        [to_ping] => 
        [pinged] => 
        [post_modified] => 2012-04-16 14:07:08 
        [post_modified_gmt] => 2012-04-16 14:07:08 
        [post_content_filtered] => 
        [post_parent] => 1 
        [guid] => http://localhost:8080/pollo_blog/wp-content/uploads/2012/04/visit_sfondo011.jpg 
        [menu_order] => 0 
        [post_type] => attachment 
        [post_mime_type] => image/jpeg 
        [comment_count] => 0 
        [filter] => raw ) 
    [1] => stdClass Object ( 
        [ID] => 33 [post_author] => 1 
        [post_date] => 2012-04-16 13:53:35 
        [post_date_gmt] => 2012-04-16 13:53:35 
        [post_content] => 
        [post_title] => visit_gallery01 
        [post_excerpt] => 
        [post_status] => inherit 
        [comment_status] => open 
        [ping_status] => open 
        [post_password] => 
        [post_name] => visit_gallery01 
        [to_ping] => 
        [pinged] => 
        [post_modified] => 2012-04-16 13:53:35 
        [post_modified_gmt] => 2012-04-16 13:53:35 
        [post_content_filtered] => 
        [post_parent] => 1 
        [guid] => http://localhost:8080/pollo_blog/wp-content/uploads/2012/04/visit_gallery01.jpg 
        [menu_order] => 0 
        [post_type] => attachment 
        [post_mime_type] => image/jpeg 
        [comment_count] => 0 
        [filter] => raw ) 
    )

and I'd like to access to the [guid] fields. Tried with :

echo $attachments[0]

or

but I don't show nothing (or I get, in the second example, an error).

Where am I wrong?

echo $attachments[0][guid]
0

1 Answer 1

3

It's a stdClass object in an array:

$attachments[0]->guid
Sign up to request clarification or add additional context in comments.

2 Comments

and can I know how many guid elements there is into the array?
@markzzz If you cannot be sure that every item in the $attachments array contains a "guid" key, use a simple loop to count: $c = 0; foreach ($attachments as $a) { if (isset($a->guid)) { ++$c; } }

Your Answer

By clicking “Post Your Answer”, you agree to our terms of service and acknowledge you have read our privacy policy.

Start asking to get answers

Find the answer to your question by asking.

Ask question

Explore related questions

See similar questions with these tags.