Yapılandırılmış bir dizide bir eleman bulmak için nasıl

0 Cevap php

Aşağıdaki kod mesaj için "bağlı" olan görüntülerin bir dizi döndürür ...

$args = array(
    'post_type' => 'attachment',
    'numberposts' => -1,
    'post_status' => null,
    'post_parent' => 0
); 
$excludeImages = get_posts($args);

/ / Var_dump

var_dump ($excludeImages)

/ / Verimleri (dizi 5 ilk öğenin bir pasajı)

array(5){[0]=> object(stdClass)#194 (24) 
        {["ID"]=> int(46) 
         ["guid"]=> string(59) "http://localhost/mysite/wp-content/uploads/avatar.png"}

The Question: How can I extract the image filename (in this case, avatar.png) from any given array item where the pattern is always ["guid"]=> string(int) "path-to-image"?

0 Cevap